Bug 1558763 - [marionette] Disable "browser.tabs.remote.separatePrivilegedContentProcess" by default. r=maja_zf

Due to bug 1557457 it can happen that loading a web page with eg.
a HTTP auth prompt, no modal dialog will be shown by Firefox. As
such disable this preference for now globally, until all the issues
with privileged content processes have been solved.

Differential Revision: https://phabricator.services.mozilla.com/D34710

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Henrik Skupin 2019-06-12 13:45:32 +00:00
Родитель ce034e26d0
Коммит 7f2ed6b0fb
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -563,6 +563,9 @@ class DesktopInstance(GeckoInstance):
# Disable browser animations
"toolkit.cosmeticAnimations.enabled": False,
# Bug 1557457: Disable because modal dialogs might not appear in Firefox
"browser.tabs.remote.separatePrivilegedContentProcess": False,
# Don't unload tabs when available memory is running low
"browser.tabs.unloadOnLowMemory": False,

Просмотреть файл

@ -131,6 +131,9 @@ const RECOMMENDED_PREFS = new Map([
// unloaded
["browser.tabs.disableBackgroundZombification", false],
// Bug 1557457: Disable because modal dialogs might not appear in Firefox
["browser.tabs.remote.separatePrivilegedContentProcess", false],
// Don't unload tabs when available memory is running low
["browser.tabs.unloadOnLowMemory", false],