tor-browser

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

abspos-breaking-003-ref.html (625B)


      1 <!DOCTYPE html>
      2 <html class="reftest-paged">
      3 <head>
      4  <title>AbsPos Pagination, with clip:rect()</title>
      5  <style type="text/css">
      6    html, body, pre { margin: 0; padding: 0; }
      7    div {
      8      position: absolute;
      9      top: 50%;
     10      border: 10px solid blue;
     11      width: 50px;
     12      height: 90%;
     13    }
     14    #mask1 {
     15      border-color: white;
     16      background: white;
     17      clip:rect(0px, auto, 3px, 0px);
     18    }
     19    #mask2 {
     20      border-color: white;
     21      background: white;
     22      clip:rect(0px, 5px, auto, 0px);
     23    }
     24  </style>
     25 </head>
     26 <body>
     27 <div></div><div id="mask1"></div><div id="mask2"></div>
     28 </body>
     29 </html>