tor-browser

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

basic-pagination-005-print.html (654B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://drafts.csswg.org/css-page-3/">
      4 <meta name="assert" content="Test that multiple pages are supported, and that the implementation doesn't just output the last page.">
      5 <link rel="mismatch" href="basic-pagination-004-print-ref.html">
      6 <!-- See   ^^^^^^^^  (mismatch is expected) -->
      7 <style>
      8  @page {
      9    size: 293px;
     10    margin: 5px;
     11  }
     12  :root {
     13    print-color-adjust: exact;
     14  }
     15  body {
     16    margin: 0;
     17    background: yellow;
     18  }
     19  div {
     20    min-height: 10px;
     21    break-after: page;
     22  }
     23 </style>
     24 <div></div>
     25 <div>Page</div>