tor-browser

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

580507-1.xhtml (278B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <script>
      5 
      6 function boom()
      7 {
      8  var input = document.getElementById("i");
      9  input.setAttribute('type', "image");
     10  input.removeAttribute('type');
     11  input.placeholder = "Y";
     12 }
     13 
     14 </script>
     15 </head>
     16 
     17 <body onload="boom();"><input id="i" /></body>
     18 </html>