tor-browser

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

origin_header_form_post_xorigin.html (513B)


      1 <!DOCTYPE HTML>
      2 <!-- Any copyright is dedicated to the Public Domain.
      3   - http://creativecommons.org/publicdomain/zero/1.0/ -->
      4 <html>
      5 <head>
      6    <script>
      7     function submitForm() {
      8         document.getElementById("form").submit();
      9     }
     10    </script>
     11 </head>
     12 <body onload="submitForm()">
     13    <form action="http://test1.mochi.test:8888/tests/netwerk/test/mochitests/origin_header.sjs"
     14          method="POST"
     15          id="form">
     16        <input type="submit" value="Submit POST">
     17    </form>
     18 </body>
     19 </html>