tor-browser

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

file_protectionsUI_fetch.html (458B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="UTF-8">
      5  <title>Testing the shield from fetch and XHR</title>
      6 </head>
      7 <body>
      8  <p>Hello there!</p>
      9  <script type="application/javascript">
     10    function test_fetch() {
     11      // eslint-disable-next-line @microsoft/sdl/no-insecure-url
     12      let url = "http://trackertest.org/browser/browser/base/content/test/protectionsUI/file_protectionsUI_fetch.js";
     13      return fetch(url);
     14    }
     15  </script>
     16 </body>
     17 </html>