tor-browser

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

abspos-breaking-010-ref.html (677B)


      1 <!DOCTYPE html>
      2 <html class="reftest-paged">
      3 <head>
      4  <title>AbsPos Pagination, with clip:rect() and box-decoration-break:clone</title>
      5  <style type="text/css">
      6    html, body, pre { margin: 0; padding: 0; }
      7    .b {
      8      page-break-before: always;
      9    }
     10    div {
     11      position: absolute;
     12      top: 50%;
     13      border: 10px solid blue;
     14      width: 50px;
     15      height: 100px;
     16      clip:rect(5px, auto, 50px, 5px);
     17    }
     18    x {
     19      display: block;
     20      position: relative;
     21    }
     22    x div { top:0; }
     23  </style>
     24 </head>
     25 <body>
     26 <div class="test"></div>
     27 <x class="b"><div class="test"></div>&nbsp;</x>
     28 <x class="b"><div class="test"></div>&nbsp;</x>
     29 </body>
     30 </html>