tor-browser

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

grid-fragmentation-between-rows-001-print.tentative.html (1022B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Psychpsyo" href="mailto:psychpsyo@gmail.com">
      3 <link rel="help" href="https://www.w3.org/TR/css-grid-1/#pagination">
      4 <link rel="match" href="./grid-fragmentation-between-rows-001-print-ref.tentative.html">
      5 <style>
      6  :root {
      7    print-color-adjust: exact;
      8  }
      9 </style>
     10 <div style="height: 40vh">
     11  Test passes if there is two purple boxes on both page 1 and page 2 in print mode. (Ctrl+P, with "print backgrounds" enabled)
     12 </div>
     13 <div style="display: grid; grid-template-columns: 1fr 1fr;">
     14  <div style="contain:size; height:40vh;">
     15    <div style="height:40vh; width: 20vw; background:purple;"></div>
     16  </div>
     17  <div style="contain:size; height:40vh;">
     18    <div style="height:40vh; width: 20vw; background:purple;"></div>
     19  </div>
     20  <div style="contain:size; height:40vh;">
     21    <div style="height:40vh; width: 20vw; background:purple;"></div>
     22  </div>
     23  <div style="contain:size; height:40vh;">
     24    <div style="height:40vh; width: 20vw; background:purple;"></div>
     25  </div>
     26 </div>