tor-browser

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

viewport-scrollbar-mis-ref.html (590B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>CSS Reference: styled scrollbars</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-color-properties">
      7 <style>
      8 #outer {
      9  border: 1px solid black;
     10  width: 200px; height: 200px;
     11  overflow: scroll;
     12 }
     13 #inner {
     14  width: 400px; height: 400px;
     15 }
     16 </style>
     17 <p>Test passes if the scrollbars in the following box are styled:</p>
     18 <div id="outer">
     19  <div id="inner">
     20  </div>
     21 </div>