tor-browser

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

caret-empty-contenteditable-overflow-click-ref.html (199B)


      1 <!doctype html>
      2 <style>
      3  div {
      4    overflow: hidden;
      5    border: 1px solid;
      6    width: 20em;
      7  }
      8 </style>
      9 <div id="host" contenteditable></div>
     10 <script>
     11 onload = () => {
     12  host.focus();
     13 }
     14 </script>