Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
/**
* Bug 1850998 - going "fullscreen" does not hide the address bar
*
* The site avoids calling requestFullScreen on Firefox. We can address
* this by pretending to not be Firefox for that specific check.
*/
if (!window.__firefoxWebCompatFixBug1850998) {
Object.defineProperty(window, "__firefoxWebCompatFixBug1850998", {
configurable: false,
value: true,
});
const proto = window.RegExp.prototype;
const descriptor = Object.getOwnPropertyDescriptor(proto, "test");
const { value } = descriptor;
descriptor.value = function (test) {
if (this.source === "UCBrowser|Firefox|SamsungBrowser") {
return false;
}
return value.call(this, test);
};
Object.defineProperty(proto, "test", descriptor);
}