tor-browser

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

textarea-scrollbar-width-none.html (722B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>CSS Test: scrollbar-width should apply on &lt;textarea&gt;</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 <link rel="help" href="https://drafts.csswg.org/css-scrollbars-1/#scrollbar-width">
      7 <link rel="match" href="textarea-scrollbar-width-none-ref.html">
      8 <meta name="fuzzy" content="maxDifference=0-150; totalPixels=0-10">
      9 <style>
     10  textarea {
     11    scrollbar-width: none;
     12    white-space: pre;
     13  }
     14 </style>
     15 <textarea cols="10" rows="10"></textarea>
     16 <script>
     17  let textarea = document.querySelector("textarea");
     18  textarea.value = ('X'.repeat(100) + '\n').repeat(100);
     19 </script>