tor-browser

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

1544895-ref.html (870B)


      1 <html reftest-async-scroll>
      2 <head>
      3 <style>
      4 body {
      5    display: flex;
      6    flex-direction: column;
      7    width: 100%;
      8    height: 100%;
      9 }
     10 .header {
     11    background-color: white;
     12    flex: none;
     13 }
     14 .content {
     15    flex: auto;
     16    overflow-y: scroll;
     17 }
     18 .inner-content {
     19    height: 2000px;
     20 }
     21 .shadowy {
     22    text-shadow: 0px 0px 1px green;
     23 }
     24 .hidden {
     25    visibility: hidden;
     26 }
     27 </style>
     28 </head>
     29 <body>
     30 <div class="header"> Wow, This is a Great Header! </div>
     31 <div class="content"
     32     reftest-displayport-x="0" reftest-displayport-y="0"
     33     reftest-displayport-w="800" reftest-displayport-h="1075"
     34     reftest-async-scroll-y="75">
     35    <div class="inner-content">
     36        <p class="hidden">Wow, This is Great Hidden Content!</p>
     37        <p class="hidden">Wow, This is Great Hidden Content!</p>
     38        <p>Wow, This is Great Visible Content!</p>
     39    </div>
     40 </div>
     41 </body>
     42 </html>