mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
MozReview-Commit-ID: AgdmUNWLGaq --HG-- extra : rebase_source : 3caf6ae08f5507a9d22a9f6b3d16766bd7f98964
10 lines
383 B
JavaScript
10 lines
383 B
JavaScript
"use strict";
|
|
|
|
/* globals ExtensionTestUtils */
|
|
|
|
// We want to force enable e10s so we can test remote extensions
|
|
Services.prefs.setBoolPref("browser.tabs.remote.force-enable", true);
|
|
// This causes nsIXULRuntime.browserTabsRemoteAutostart to reset and force e10s
|
|
Services.prefs.setStringPref("e10s.rollout.cohort", "xpcshell-test");
|
|
|
|
ExtensionTestUtils.remoteContentScripts = true;
|