Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: disable certain Fission features for Firefox #7610

Merged
merged 3 commits into from Oct 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/node/Launcher.ts
Expand Up @@ -529,8 +529,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,
Expand Down