Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test failed 6 times in the preceding 30 days. quicksearch this test
- Manifest: dom/ipc/tests/browser.toml
// Import this in order to use `do_tests()`.
Services.scriptloader.loadSubScript(
this
);
add_task(async function test_isolate_high_value() {
await SpecialPowers.pushPrefEnv({
set: [
["browser.tabs.remote.separatedMozillaDomains", "mozilla.org"],
[
"fission.webContentIsolationStrategy",
WebContentIsolationStrategy.IsolateHighValue,
],
],
});
await do_tests({
com_normal: "web",
org_normal: "web",
moz_normal: "privilegedmozilla",
moz_coop_coep: "privilegedmozilla",
});
});