tor-browser

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

position-sticky-async-zoom-1.html (668B)


      1 <!DOCTYPE html>
      2 <html reftest-async-scroll
      3      reftest-displayport-x="0" reftest-displayport-y="0"
      4      reftest-displayport-w="800" reftest-displayport-h="1000"
      5      reftest-async-scroll-x="0" reftest-async-scroll-y="50"
      6      reftest-async-zoom="2.0">
      7 <head>
      8  <style>
      9    html {
     10      scrollbar-width: none;
     11    }
     12    body {
     13      height: 3000px;
     14      margin: 0;
     15    }
     16    div {
     17      position: sticky;
     18      top: 0;
     19      width: 100px;
     20      height: 100px;
     21      background: green;
     22    }
     23  </style>
     24 </head>
     25 <body>
     26  <!-- This test is identical to the position-fixed-async-zoom-1 test, but for
     27       position:sticky elements. -->
     28  <div></div>
     29 </body>
     30 </html>