trisquel-icecat/icecat/dom/ipc/tests/browser_wpi_isolate_everything.js

27 lines
837 B
JavaScript

// Import this in order to use `do_tests()`.
Services.scriptloader.loadSubScript(
"chrome://mochitests/content/browser/dom/ipc/tests/browser_wpi_base.js",
this
);
add_task(async function test_isolate_everything() {
await SpecialPowers.pushPrefEnv({
set: [
["browser.tabs.remote.separatedMozillaDomains", "mozilla.org"],
[
"fission.webContentIsolationStrategy",
WebContentIsolationStrategy.IsolateEverything,
],
],
});
await do_tests({
com_normal: "webIsolated=https://example.com",
org_normal: "webIsolated=https://example.org",
moz_normal: "privilegedmozilla",
com_high: "webIsolated=https://example.com",
com_coop_coep: "webCOOP+COEP=https://example.com",
org_coop_coep: "webCOOP+COEP=https://example.org",
moz_coop_coep: "privilegedmozilla",
});
});