summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-page/page-name-fixed-pos-001.html
blob: b70dd85f2b92728dfe8e85a36b40ba3477c7aa98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html class="reftest-paged">
  <style>
div {
    width: 1in;
    height: 1in;
    border: 1px solid black;
}
.fixed {
    position: fixed;
    display: flex;
    left: 0.5in;
    top: 0.5in;
    border-color: blue;
}
  </style>
  <body>
    <div class="fixed">fixed</div>
    <div style="page: a">a</div>
    <div class="page: b">b</div>
  </body>
</html>