Leaves `dom.IntersectionObserver.enabled` as it may break error console

> Closes #13
This commit is contained in:
Samuel FORESTIER 2020-11-23 18:25:35 +01:00
parent b8ef724bb0
commit 7f3b35ca64
1 changed files with 3 additions and 3 deletions

View File

@ -903,12 +903,12 @@ user_pref("javascript.options.baselinejit", false);
* [NOTE] In FF71+ this no longer affects extensions (1576254) * [NOTE] In FF71+ this no longer affects extensions (1576254)
* [1] https://developer.mozilla.org/docs/WebAssembly ***/ * [1] https://developer.mozilla.org/docs/WebAssembly ***/
user_pref("javascript.options.wasm", false); user_pref("javascript.options.wasm", false);
/* 2426: disable Intersection Observer API [FF55+] /* 2426: disable Intersection Observer API [FF55+] [RESTART]
* [NOTE] Unlike arkenfox/user.js, we explicitly disable it * [NOTE] Disabling it may break the error console (CTRL+SHIFT+J)
* [1] https://developer.mozilla.org/docs/Web/API/Intersection_Observer_API * [1] https://developer.mozilla.org/docs/Web/API/Intersection_Observer_API
* [2] https://w3c.github.io/IntersectionObserver/ * [2] https://w3c.github.io/IntersectionObserver/
* [3] https://bugzilla.mozilla.org/1243846 ***/ * [3] https://bugzilla.mozilla.org/1243846 ***/
user_pref("dom.IntersectionObserver.enabled", false); // user_pref("dom.IntersectionObserver.enabled", false);
/* 2429: enable (limited but sufficient) window.opener protection [FF65+] /* 2429: enable (limited but sufficient) window.opener protection [FF65+]
* Makes rel=noopener implicit for target=_blank in anchor and area elements when no rel attribute is set ***/ * Makes rel=noopener implicit for target=_blank in anchor and area elements when no rel attribute is set ***/
user_pref("dom.targetBlankNoOpener.enabled", true); // [DEFAULT: true FF78+] user_pref("dom.targetBlankNoOpener.enabled", true); // [DEFAULT: true FF78+]