blob: d01d1802135c797dd4dd449f4c033d7c50b6366b [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Parent is site-keyed, subdomain child 1 is origin-keyed, non-subdomain but different-port child 2 is site-keyed</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script type="module">
import {
insertIframe,
testSameAgentCluster,
testDifferentAgentClusters,
testGetter
} from "../resources/helpers.mjs";
promise_setup(async () => {
// Order of loading should not matter, but we make it sequential to ensure the
// tests are deterministic.
await insertIframe("{{hosts[][www]}}", "?1");
await insertIframe("{{hosts[][]}}:{{ports[https][1]}}");
});
// Everyone is different-origin, so everyone's request/non-request is
// respected.
//
// So, the parent and child2 end up in the site-keyed agent cluster, and child1
// ends up in an origin-keyed agent cluster.
testDifferentAgentClusters([self, 0], "Parent to child1");
testSameAgentCluster([self, 1], "Parent to child2");
testDifferentAgentClusters([0, 1], "child1 to child2");
testDifferentAgentClusters([1, 0], "child2 to child1");
testGetter(self, false, "parent");
testGetter(0, true, "child1");
testGetter(1, false, "child2");
</script>