object-image-only-for-print.html (568B)
1 <!DOCTYPE html> 2 <title>Test print result of image not displayed on screen</title> 3 4 <link rel="help" href="https://html.spec.whatwg.org/multipage/iframe-embed-object.html#the-object-element"> 5 <link rel="help" href="https://crbug.com/41477900"> 6 7 <link rel="match" href="object-image-only-for-print-ref.html"> 8 9 <style> 10 @media not print { 11 .print-only { 12 display: none; 13 } 14 } 15 </style> 16 17 <p> 18 Should print a green rectangle but not display it on screen. 19 </p> 20 21 <div> 22 <object 23 class="print-only" 24 data="/images/green.png" 25 type="image/png" 26 ></object> 27 </div>