tor-browser

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

100x100-grey-box-with-vertical-scrollbar.html (459B)


      1 <!DOCTYPE html>
      2 <title>Reference</title>
      3 <link rel="author" title="Javier Fernandez" href="mailto:jfernandez@igalia.com">
      4 <style>
      5    .box {
      6       width: 100px;
      7       height: 100px;
      8       background-color: grey;
      9       overflow: auto;
     10    }
     11    .item {
     12       width: 50px;
     13       height: 150px;
     14    }
     15 </style>
     16 <p>The test passes if you see a grey square below and only the vertical scrollbar is visible.</p>
     17 <div class="box"><div class="item"></div></div>