Bug 1858983 [wpt PR 42532] - Update wpt metadata, a=testonly
[gecko.git] / layout / reftests / pagination / abspos-breaking-009-ref.html
blobbdfd70152796ae071c41231fa49de6c7179fee2d
1 <!DOCTYPE html>
2 <html class="reftest-paged">
3 <head>
4 <title>AbsPos Pagination, with clip:rect() and box-decoration-break:clone</title>
5 <style type="text/css">
6 html, body, pre { margin: 0; padding: 0; }
7 div {
8 position: absolute;
9 top: 100px;
10 border: 10px solid blue;
11 width: 50px;
12 height: 220px;
14 #mask1 {
15 border-color: white;
16 background: white;
17 clip:rect(0px, auto, 212px, 0px);
19 #mask2 {
20 border-color: white;
21 background: white;
22 clip:rect(200px, 5px, auto, 0px);
24 #mask3 {
25 border-color: white;
26 background: white;
27 clip:rect(222px, auto, auto, 0px);
29 #mask4 {
30 border-color: white;
31 background: white;
32 clip:rect(200px, auto, auto, 65px);
34 </style>
35 </head>
36 <body>
37 <div></div><div id="mask1"></div><div id="mask2"></div><div id="mask3"></div><div id="mask4"></div>
38 </body>
39 </html>