blob: 562ab40c68bf4163a540d96f447dc13287f9438f [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Opener is origin-keyed, openee is site-keyed, openee is same-origin to the opener</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script type="module">
import {
openWindow,
testOpenedWindowIsInSameAgentCluster,
testGetter
} from "../resources/helpers.mjs";
let openee;
promise_setup(async () => {
openee = await openWindow("{{hosts[][]}}");
});
// Since they're same-origin, the openee's non-request is ignored, so both end
// up in the origin-keyed agent cluster.
testOpenedWindowIsInSameAgentCluster(() => openee);
testGetter(self, true, "opener");
testGetter(() => openee, true, "openee");
</script>