tor-browser

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

connection-reuse.https.html (871B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8" />
      5 <title>Resource Timing connection reuse</title>
      6 <link rel="author" title="Google" href="http://www.google.com/" />
      7 <link rel="help" href="https://www.w3.org/TR/resource-timing-2/#sec-performanceresourcetiming"/>
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="resources/entry-invariants.js"></script>
     11 <script src="resources/connection-reuse-test.js"></script>
     12 <script>
     13  connection_reuse_test("resources/fake_responses.py",
     14    {
     15      'on_200': invariants.assert_tao_pass_no_redirect_https,
     16      'on_304': invariants.assert_tao_pass_304_not_modified_https,
     17    }, "Reuse an HTTPS connection");
     18 </script>
     19 </head>
     20 <body>
     21 <h1>Description</h1>
     22 <p>See <a href="resources/connection-reuse-test.js">the included test
     23  script</a></p>
     24 </body>
     25 </html>