root-element-display-none-print.html (483B)
1 <!DOCTYPE html> 2 <title>display:none on root should produce a blank page</title> 3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 4 <link rel="help" href="https://www.w3.org/TR/css-page-3/#page-properties"> 5 <link rel="match" href="reference/blank-print-ref.html"> 6 <style> 7 @page { 8 border: solid red; 9 background: hotpink; 10 } 11 :root { 12 print-color-adjust: exact; 13 } 14 html { 15 display: none; 16 } 17 </style> 18 FAIL, this page should be blank.