tor-browser

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

file_double_submit.html (287B)


      1 <form action="PASS.html" method="POST"><input name="foo"></form>
      2 <button>clicky</button>
      3 
      4 <script>
      5 document.querySelector("button")
      6  .addEventListener("click", () => {
      7    let f = document.querySelector("form");
      8    f.dispatchEvent(new Event("submit"));
      9    f.submit();
     10  });
     11 </script>