tor-browser

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

position-fixed-body.html (653B)


      1 <!DOCTYPE html>
      2 <html reftest-async-scroll>
      3 <style>
      4 body {
      5  position: fixed;
      6  margin: 0px;
      7  top: 0;
      8  right: 0;
      9  bottom: 0;
     10  left: 0;
     11 }
     12 #scrollbox {
     13  width: 100%;
     14  height: 100%;
     15  overflow: scroll;
     16  scrollbar-width: none;
     17 }
     18 #scrolledContents {
     19  height: 10000px;
     20  background: radial-gradient(circle, blue 30%, transparent 0);
     21  background-size: 80px 80px;
     22 }
     23 </style>
     24 <body>
     25  <div id="scrollbox"
     26       reftest-dislayport-x="0" reftest-displayport-y="0"
     27       reftest-displayport-w="800" reftest-displayport-h="2000"
     28       reftest-async-scroll-x="0" reftest-async-scroll-y="20">
     29    <div id="scrolledContents"></div>
     30  </div>
     31 </body>
     32 </html>