blob: 425983423ba74639b368be90c1ed3771b1e787b4 [file] [edit]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Parent is not isolated, navigate a frame from a subdomain isolated to the same subdomain non-isolated</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script type="module">
import {
insertIframe,
navigateIframe,
setBothDocumentDomains,
testDifferentAgentClusters,
testOriginIsolationRestricted
} from "../resources/helpers.mjs";
let frame1;
promise_setup(async () => {
frame1 = await insertIframe("{{hosts[][www]}}", "?1");
});
// Since they are different-origin, the child's isolation request is respected.
testDifferentAgentClusters([self, 0], "Before: parent to child");
testOriginIsolationRestricted(self, false, "before parent");
testOriginIsolationRestricted(0, true, "before child");
promise_test(async () => {
await navigateIframe(frame1, "{{hosts[][www]}}");
await setBothDocumentDomains(frames[0]);
}, "Navigation");
// Because this subdomain was previously isolated, the second load's
// non-isolation request is ignored; instead we continue isolating.
testDifferentAgentClusters([self, 0], "After: parent to child");
testOriginIsolationRestricted(self, false, "after parent");
testOriginIsolationRestricted(0, true, "after child");
</script>