tor-browser

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

overscroll-scrollbar-ref.html (471B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <style>
      5    body {
      6      /* The 3028 here was arrived at experimentally to match to
      7         produce a scrollbar of approximately the same length as
      8         the one of the test page squished by the overscroll. */
      9      height: 3028px;
     10      margin: 0;
     11    }
     12    div {
     13      position: absolute;
     14      top: 8px;
     15      width: 200px;
     16      height: 200px;
     17      background: green;
     18    }
     19  </style>
     20 </head>
     21 <body>
     22  <div></div>
     23 </body>
     24 </html>