tor-browser

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

caret-rtl-text-in-ltr-input-notref-2.html (221B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <input type=text value="الخير" autofocus>
      4 <script>
      5 onload = () => {
      6  let input = document.querySelector("input");
      7  input.selectionStart = input.selectionEnd = 0;
      8 };
      9 </script>