tor-browser

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

page-background-image-print.html (506B)


      1 <!DOCTYPE html>
      2 <title>Test print result of background-image only for printed page</title>
      3 
      4 <link rel="help" href="https://drafts.csswg.org/css-page-3/#page-properties">
      5 <link rel="help" href="https://crbug.com/341947679">
      6 
      7 <link rel="match" href="page-background-image-print-ref.html">
      8 
      9 <style>
     10  :root {
     11    print-color-adjust: exact;
     12  }
     13  @page {
     14    background-image: url("/images/green.png");
     15    margin: 0px;
     16  }
     17 </style>
     18 
     19 <p>
     20  Should print on a green background but not display it on screen.
     21 </p>