tor-browser

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

240933-1-ref.html (451B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body onload="setup()">
      4 <textarea id="ta" dir="rtl">
      5 
      6 &#x05d0;a&#x05d1;
      7 
      8 </textarea>
      9 <textarea id="tb">
     10 
     11 abc
     12 
     13 </textarea>
     14 
     15 <div id="coords1"></div>
     16 <div id="coords2"></div>
     17 
     18 <script>
     19  function setup() {
     20    document.getElementById("coords1").innerHTML = document.getElementById("ta").selectionStart;
     21    document.getElementById("coords2").innerHTML = document.getElementById("tb").selectionStart;
     22  }
     23 </script>
     24 </body>
     25 </html>