tor-browser

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

1443902-4-ref.html (294B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <script>
      5 function init()
      6 {
      7  document.getElementById("t1").focus();
      8  document.getElementById("t1").setSelectionRange(4, 4);
      9 }
     10 </script>
     11 </head>
     12 <body onload="init()">
     13 <div id="d1">
     14 <input type="text">
     15 </div>
     16 <input type="text" id=t1 value="ABCD">
     17 </body>
     18 </html>