summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/chrome/print_page_size3_ref.html
blob: cc6f69a7ad4e4d9b8d4c87f6211dbed571d1fdde (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
32
33
<!DOCTYPE html>
<style>
@page {
    margin: 0;
}
div {
    position: absolute;
    background: blue;
    width: 1in;
    height: 1in;
}
/* These positions assume the test case was placed in the upper left corner of
 * the page, rather than being centered or scaled.
 */
.upper {
    top: 0;
}
.lower{
    top: 2in;
}
.left{
    left: 0;
}
.right{
    left: 2in;
}
</style>
<body>
<div class="upper left"></div>
<div class="upper right"></div>
<div class="lower left"></div>
<div class="lower right"></div>
</body>