summaryrefslogtreecommitdiffstats
path: root/layout/reftests/pagination/inline-block-frag-offset-1-ref.html
blob: 17824b4715a93f5ccd3487130f3d61306ab00f4a (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
34
35
<!DOCTYPE html>
<html class="reftest-paged">
<head>
    <style>
    @page {
        size: 5in 3in;
        margin: 0.5in;
    }

    * {
        margin: 0;
    }

    .green {
        display: block;
        width: 1in;
        height: 3in;
        background-color: green;
    }

    .blue {
        width: 1in;
        height: 1in;
        background-color: blue;
        position: absolute;
        top: 1.5in;
        z-index: 1;
    }
    </style>
</head>
<body>
    <div class="green"></div>
    <div class="blue"></div>
</body>
</html>