background-image-only-for-print.html (650B)
1 <!DOCTYPE html> 2 <title>Test print result of background-image not displayed on screen</title> 3 4 <link rel="help" href="https://drafts.csswg.org/css-backgrounds/#background-image"> 5 <link rel="help" href="https://crbug.com/40262871"> 6 7 <link rel="match" href="background-image-only-for-print-ref.html"> 8 9 <style> 10 @media not print { 11 .print-only { 12 display: none; 13 } 14 } 15 16 :root { 17 print-color-adjust: exact; 18 } 19 20 #target { 21 background-image: url("/images/green.png"); 22 height: 50px; 23 width: 100px; 24 } 25 </style> 26 27 <p> 28 Should print a green rectangle but not display it on screen. 29 </p> 30 31 <div id="target" class="print-only"></div>