summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-page/page-name-margin-002.html
blob: a7e4308e98842561c87e4950ceb3648180e052b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html class="reftest-paged">
  <style>
@page a {
    margin: 1in;
}
@page {
    margin: 0;
}
div {
    width: 1cm;
    height: 1cm;
    border: 2px solid blue;
}
  </style>
  <body>
    <div></div>
    <div style="page: a"></div>
  </body>
</html>