Bug 1874684 - Part 17: Fix uninitialised variable warnings from clang-tidy. r=allstarschh
[gecko.git] / layout / reftests / pagination / fieldset-005-ref.html
blob8032eb1de986b456fd2de81c9b7e505f1fcd3f9f
1 <!DOCTYPE html>
2 <html class="reftest-paged">
3 <head>
4 <title>Reference: fieldset fragmentation</title>
5 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=471015">
6 <meta name="flags" content="paged">
7 <style>
8 @page { size:5in 3in; margin:0.5in; }
9 html,body {
10 color:black; background-color:white; font:0.5in/1 monospace; padding:0; margin:0;
12 fieldset {
13 position: relative;
14 padding: 0;
15 margin: 0;
16 padding-top: 0.5em;
17 margin-top: 0.5em;
18 border: 1em solid black;
19 page-break-after:always;
21 div {
22 position: absolute;
23 top: -1em;
24 width: 3em;
25 height: 1em;
26 background-color: white;
28 p { margin:0 }
29 </style>
30 </head>
31 <body>
32 <fieldset><div></div>A</fieldset>
33 <p style="width:3em; height:1em; background:black; position: relative; left:1em"></p>
34 <p style="margin-top:-1em">AFTER</p>
35 </body>
36 </html>