tor-browser

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

res_object.html (349B)


      1 <!DOCTYPE html>
      2 
      3 <head>
      4 <meta http-equiv="content-type" content="text/html; charset=utf-8">
      5 </head>
      6 
      7 <html>
      8 <body>
      9  <p>Dummy Page</p>
     10  <script>
     11     let foo = async () => {
     12       let url = "https://example.com/browser/netwerk/test/browser/res_img.png";
     13       await fetch(url, { mode: "no-cors" });
     14     }
     15     foo();
     16  </script>
     17 </body>
     18 </html>