tor-browser

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

page-size-012-print.html (902B)


      1 <!DOCTYPE html>
      2 <title>Test vertical writing mode with specified page size and logical margins.</title>
      3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      4 <link rel="help" href="https://www.w3.org/TR/css-page-3/#at-page-rule">
      5 <link rel="help" href="https://www.w3.org/TR/css-page-3/#typedef-page-size-page-size">
      6 <link rel="match" href="page-size-012-print-ref.html">
      7 <style>
      8  @page {
      9    size: 600px 400px;
     10    margin: 0;
     11    margin-inline-start: 50px;
     12  }
     13  @page :first {
     14    margin-inline-start: 0;
     15    margin-block-start: 50px;
     16  }
     17  :root {
     18    print-color-adjust: exact;
     19    writing-mode: vertical-rl;
     20  }
     21  body { margin: 0; }
     22 </style>
     23 <div style="background:yellow;">
     24  50px to the left of page box right edge.<br>
     25  Page widths larger than heights.<br>
     26 </div>
     27 <div style="break-before:page; background:yellow;">
     28  50px below the page box top edge.<br>
     29 </div>