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