From 4a6fb8e08332d4fb8eb9291d701ebcc8e8b6ae02 Mon Sep 17 00:00:00 2001 From: Henrik Skupin Date: Tue, 28 Sep 2021 17:36:27 +0200 Subject: [PATCH] chore: disable certain Fission features for Firefox --- src/node/Launcher.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/node/Launcher.ts b/src/node/Launcher.ts index 615e900161f8b..1b55b01b3032c 100644 --- a/src/node/Launcher.ts +++ b/src/node/Launcher.ts @@ -513,8 +513,11 @@ class FirefoxLauncher implements ProductLauncher { // Make sure opening about:addons will not hit the network 'extensions.webservice.discoverURL': `http://${server}/dummy/discoveryURL`, - // Force disable Fission until the Remote Agent is compatible - 'fission.autostart': false, + // Temporarily force disable BFCache in parent (https://bit.ly/bug-1732263) + 'fission.bfcacheInParent': false, + + // Force all web content to use a single content process + 'fission.webContentIsolationStrategy': 0, // Allow the application to have focus even it runs in the background 'focusmanager.testmode': true,