tor-browser

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

dynamic-type-1.html (207B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body>
      4    <input type="checkbox">
      5    <script>
      6      var i = document.getElementsByTagName("input")[0];
      7      i.type = "text";
      8      i.value = "abcdef";
      9    </script>
     10 </body>
     11 </html>