tor-browser

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

327571-1.html (272B)


      1 <html>
      2 <head>
      3 <script>
      4 
      5 function init()
      6 {
      7 
      8  var x = document.getElementById("d");
      9  x.__proto__ = document.getElementById("f");
     10  x.inputname;
     11 }
     12 
     13 </script>
     14 </head>
     15 
     16 <body onload="init();">
     17 
     18 <div id="d"></div>
     19 <form id="f"><input name="inputname"></form>
     20 
     21 </body>
     22 </html>