tor-browser

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

viewport-units-scrollbars-custom-001.html (677B)


      1 <!doctype html>
      2 <html style="overflow-x: auto; overflow-y: scroll;">
      3 <link rel="help"
      4  href="https://drafts.csswg.org/css-values-4/#:~:text=reserved%20for%20them)%20unconditionally">
      5 <link rel="match"
      6  href="viewport-units-scrollbars-custom-001-ref.html">
      7 <meta name="assert" content="Viewport units do not respect custom scrollbars">
      8 
      9 <style>
     10  html::-webkit-scrollbar {
     11    width: 300px;
     12  }
     13  html::-webkit-scrollbar-thumb {
     14    background-color: black;
     15  }
     16  html::-webkit-scrollbar-track:vertical {
     17    background-color: hotpink;
     18  }
     19 </style>
     20 
     21 <body style="margin: 0; padding: 0;">
     22  <div style="width: 100vw; height: 100px; background: orange;"></div>
     23 </body>
     24 
     25 </html>