Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug
- 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_nothing() {
await SpecialPowers.pushPrefEnv({
set: [
["browser.tabs.remote.separatedMozillaDomains", "mozilla.org"],
[
"fission.webContentIsolationStrategy",
WebContentIsolationStrategy.IsolateNothing,
],
],
});
await do_tests({
com_normal: "web",
org_normal: "web",
moz_normal: "privilegedmozilla",
com_high: "web",
moz_coop_coep: "privilegedmozilla",
});
});