tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

insecure-http.sub.html (746B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Parent requests origin-keying, child requests origin-keying, child is a subdomain of the parent, but all over insecure HTTP</title>
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 
      7 <div id="log"></div>
      8 
      9 <script type="module">
     10 import {
     11  insertIframe,
     12  testSameAgentCluster,
     13  testGetter
     14 } from "./resources/helpers.mjs";
     15 
     16 promise_setup(async () => {
     17  await insertIframe("{{hosts[][www]}}", "?1");
     18 });
     19 
     20 // All origin-keying requests are ignored, since this is over insecure HTTP.
     21 // So both end up in the site-keyed agent cluster.
     22 testSameAgentCluster([self, 0]);
     23 
     24 testGetter(self, false, "parent");
     25 testGetter(0, false, "child");
     26 </script>