Bug 1874684 - Part 17: Fix uninitialised variable warnings from clang-tidy. r=allstarschh
[gecko.git] / layout / reftests / pagination / fieldset-004-ref.html
blob5ffb65dcec16fb219766580d1e6fbcc23eab76f1
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 border-bottom-color: white;
20 page-break-after: always;
22 div {
23 position: absolute;
24 top: -1em;
25 width: 3em;
26 height: 1em;
27 background-color: white;
29 p { margin: 0; }
30 x { display: block; height: 1em; }
31 </style>
32 </head>
33 <body>
34 <fieldset><div></div><x>A<br>B</x></fieldset>
35 <p style="padding-left:1em">C</p><p style="margin-top:-1em">AFTER</p>
36 </body>
37 </html>