summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-page/page-rule-specificity-003-print.html
blob: eda6c7ee51bdd5ea60a06bdf98e99b384d80ec22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
  <meta charset="utf-8">
  <title>CSS Paged Media: @page without selector provides defaults</title>
  <link rel="author" title="Jonathan Watt" href="mailto:jwatt@jwatt.org"/>
  <link rel="help" href="https://drafts.csswg.org/css-page/#cascading-and-page-context"/>
  <meta name="assert" content="@page rule without a selector list should apply to pages not matched by rules with selectors">
  <link rel="match" href="page-rule-specificity-print-portrait-ref.html"/>
  <meta name="reftest-pages" content="2">
  <style>

@page :first {
  size: landscape;
}
@page {
  size: portrait;
}
div:first-of-type {
  break-after: page;
}
body {
  margin: 0;
}

  </style>
  <body>
    <div>Landscape</div>
    <div>Portrait</div>
  </body>
</html>