tor-browser

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

page-box-011-print.html (606B)


      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/#page-properties">
      4 <link rel="match" href="page-box-011-print-ref.html">
      5 <meta name="assert" content="Test display:none in an @page context, which should have no effect">
      6 <style>
      7  @page {
      8    display: none;
      9    margin: 0;
     10    border: 10px solid;
     11    padding: 10px;
     12    background: yellow;
     13  }
     14  :root {
     15    print-color-adjust: exact;
     16  }
     17  body {
     18    margin: 0;
     19  }
     20 </style>
     21 This page should have a yellow background with a black border around it.