From b592e0e592bb80141b0b4f880dc3b0069e21301c Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Sat, 27 Mar 2021 07:49:14 +0000 Subject: [PATCH] 87 deprecated It is simpler to leave the PointerEvent pref where it is, until ESR78 is EOL - FF87+ users who use RFP Alts simply add a dead pref, no harm - This way ESR78 users don't have to worry about extra char flipping: it's the same as before: 1 flip for ESR, 1 flip for RFP Alts --- user.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/user.js b/user.js index 00b6ab3..4729016 100644 --- a/user.js +++ b/user.js @@ -121,8 +121,6 @@ user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); user_pref("browser.newtabpage.activity-stream.section.highlights.includePocket", false); user_pref("browser.newtabpage.activity-stream.showSponsored", false); user_pref("browser.newtabpage.activity-stream.feeds.discoverystreamfeed", false); // [FF66+] -/* 0105d: disable Activity Stream recent Highlights in the Library [FF57+] ***/ - // user_pref("browser.library.activity-stream.enabled", false); /* 0105e: clear default topsites * [NOTE] This does not block you from adding your own ***/ user_pref("browser.newtabpage.activity-stream.default.sites", ""); @@ -1562,8 +1560,9 @@ user_pref("webgl.enable-debug-renderer-info", false); // 0=no-preference, 1=reduce user_pref("ui.prefersReducedMotion", 0); // [HIDDEN PREF] // FF64+ -// 4615: [2516] disable PointerEvents +// 4615: [2516] disable PointerEvents [FF86 or lower] // [1] https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent + // [-] https://bugzilla.mozilla.org/1688105 user_pref("dom.w3c_pointer_events.enabled", false); // * * * / // FF67+ @@ -1678,6 +1677,10 @@ user_pref("security.ssl.errorReporting.url", ""); // 2653: disable hiding mime types (Options>General>Applications) not associated with a plugin // [-] https://bugzilla.mozilla.org/1581678 user_pref("browser.download.hide_plugins_without_extensions", false); +// FF87 +// 0105d: disable Activity Stream recent Highlights in the Library [FF57+] + // [-] https://bugzilla.mozilla.org/1689405 + // user_pref("browser.library.activity-stream.enabled", false); // ***/ /* END: internal custom pref to test for syntax errors ***/