tor-browser

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

textarea-scrollbar-width-none-ref.html (455B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>CSS Reference</title>
      4 <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org">
      5 <link rel="author" title="Mozilla" href="https://www.mozilla.org">
      6 <style>
      7  textarea {
      8    overflow: hidden;
      9    white-space: pre;
     10  }
     11 </style>
     12 <textarea cols="10" rows="10"></textarea>
     13 <script>
     14  let textarea = document.querySelector("textarea");
     15  textarea.value = ('X'.repeat(100) + '\n').repeat(100);
     16 </script>