Bug 1931425 - Limit how often moz-label's #setStyles runs r=reusable-components-revie...
[gecko.git] / layout / reftests / forms / fieldset / fieldset-overflow-auto-1-ref.html
blob9732c7feab43c63c0fe91d21368ee763c9a970ff
1 <!DOCTYPE HTML>
2 <html><head>
3 <meta charset="utf-8">
4 <title>Testcase for bug 261037</title>
5 <style type="text/css">
6 fieldset, div {
7 background:pink;
8 overflow:auto;
9 height:100px;
10 margin:0; padding:0; border:0;
12 p {
13 background:blue;
14 height:100px;
15 margin:0; padding:0;
17 .overflow {
18 height:110px;
20 .abs {
21 position:absolute;
22 width:100px;
23 top:250px;
25 p.abs {
26 top:0;left:0;
28 .b { border:10px solid black; }
29 .p { padding: 7px 0; }
30 .p p { height:114px; }
31 </style>
32 </head>
33 <body>
35 <div><p></p></div>
36 <br>
37 <div><p class="overflow"></p></div>
38 <br>
39 <div class="abs"><p class="abs"></p></div>
40 <br>
41 <div class="abs" style="left:120px"><p class="abs overflow"></p></div>
42 <br>
43 <div class="abs b" style="left:240px"><p class="abs"></p></div>
44 <br>
45 <div class="abs b" style="left:370px"><p class="abs overflow"></p></div>
46 <br>
47 <div class="abs b p" style="left:510px"><p class="abs"></p></div>
48 <br>
49 <div class="abs b p" style="left:640px"><p class="abs overflow"></p></div>
51 </body>
52 </html>