tor-browser

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

html_statistics-edge-case-page.html (675B)


      1 <!-- Any copyright is dedicated to the Public Domain.
      2     http://creativecommons.org/publicdomain/zero/1.0/ -->
      3 <html>
      4 <head>
      5   <meta charset="utf-8"/>
      6   <title>Test page with slow requests and image-cache requests</title>
      7 </head>
      8  <body>
      9    <script type="text/javascript">
     10      "use strict";
     11      /* exported unblock */
     12 
     13      // Open a request which will not resolve until unblock() is called.
     14      fetch("sjs_long-polling-server.sjs").then(res => res.text()).then(console.log);
     15 
     16      function unblock() {
     17        fetch("sjs_long-polling-server.sjs?unblock");
     18      }
     19    </script>
     20    <img src="test-image.png">
     21    <img src="test-image.png">
     22  </body>
     23 </html>