browser(firefox): disable cross-process navigations for about:blank (#15283)

This commit is contained in:
Dmitry Gozman 2022-06-30 14:49:11 -07:00 committed by GitHub
parent 3d1d723c56
commit 268bfec4b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 4 deletions

View File

@ -1,2 +1,2 @@
1332
Changed: lushnikov@chromium.org Thu Jun 30 02:06:47 MSK 2022
1333
Changed: dgozman@gmail.com Thu Jun 30 14:19:05 PDT 2022

View File

@ -16,9 +16,12 @@ pref("browser.tabs.remote.separatePrivilegedMozillaWebContentProcess", false);
pref("pdfjs.disabled", true);
// Disable all kinds of cross-process navigations until we are ready.
pref("fission.autostart", false);
pref("fission.webContentIsolationStrategy", 0);
pref("fission.bfcacheInParent", false);
// Avoid about:blank loading cross-process until we are ready.
pref("browser.tabs.remote.systemTriggeredAboutBlankAnywhere", true);
// =================================================================
// =================================================================

View File

@ -1,2 +1,2 @@
1331
Changed: lushnikov@chromium.org Thu Jun 30 02:09:30 MSK 2022
1332
Changed: dgozman@gmail.com Thu Jun 30 14:19:05 PDT 2022

View File

@ -16,9 +16,12 @@ pref("browser.tabs.remote.separatePrivilegedMozillaWebContentProcess", false);
pref("pdfjs.disabled", true);
// Disable all kinds of cross-process navigations until we are ready.
pref("fission.autostart", false);
pref("fission.webContentIsolationStrategy", 0);
pref("fission.bfcacheInParent", false);
// Avoid about:blank loading cross-process until we are ready.
pref("browser.tabs.remote.systemTriggeredAboutBlankAnywhere", true);
// =================================================================
// =================================================================