summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/chrome/print_page_size4.html
blob: ef6077e2a124968076b4c573f41eb438c3cb838f (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: 10in;
    margin: 0;
}
div {
    position: absolute;
    background: blue;
    width: 1in;
    height: 1in;
}
.upper {
    top: 0;
}
.lower{
    bottom: 0;
}
.left{
    left: 0;
}
.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>