summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/chrome/print_page_size1_ref.html
blob: cc3ff8598fc35aba1940db8db3764b46f53a000b (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
31
<!DOCTYPE html>
<style>
@page {
    size: 2in;
    margin: 0.5in;
}
div {
    position: absolute;
    background: blue;
    width: 20px;
    height: 20px;
}
.upper {
    top: 0.5in;
}
.lower{
    bottom: 0;
}
.left{
    left: 0.5in;
}
.right{
    right: 0;
}
</style>
<body>
<div class="upper left"></div>
<div class="upper right"></div>
<div class="lower left"></div>
<div class="lower right"></div>
</body>