tor-browser

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

bug1097242-1-ref.html (343B)


      1 <!DOCTYPE html>
      2 <html>
      3  <script>
      4    function test() {
      5      focus();
      6      var div = document.querySelector("div");
      7      div.focus();
      8      getSelection().collapse(div.firstChild, 0);
      9    }
     10  </script>
     11  <body onload="test()">
     12    <div contenteditable spellcheck="false" style="outline: none">foo<span>bar</span>baz</div>
     13  </body>
     14 </html>