tor-browser

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

html_open-request-in-tab.html (994B)


      1 <!-- Any copyright is dedicated to the Public Domain.
      2 http://creativecommons.org/publicdomain/zero/1.0/ -->
      3 <!doctype html>
      4 
      5 <html>
      6  <head>
      7    <meta charset="utf-8"/>
      8    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
      9    <meta http-equiv="Pragma" content="no-cache" />
     10    <meta http-equiv="Expires" content="0" />
     11    <title>Network Monitor test page</title>
     12  </head>
     13 
     14  <body>
     15    <p>Performing a GET or POST request</p>
     16 
     17    <script type="text/javascript">
     18      /* exported performRequest */
     19      "use strict";
     20 
     21      function performRequest(method, contentType, payload) {
     22        const xhr = new XMLHttpRequest();
     23        const url = "sjs_method-test-server.sjs";
     24        xhr.open(method, url, true);
     25        xhr.setRequestHeader("Accept-Language", window.navigator.language);
     26        if (contentType) {
     27          xhr.setRequestHeader("Content-Type", contentType);
     28        }
     29        xhr.send(payload || "");
     30      }
     31    </script>
     32  </body>
     33 </html>