Bug 1800044 [wpt PR 36907] - Fix same URL navigation test, a=testonly
[gecko.git] / layout / reftests / margin-collapsing / block-overflow-3-ref2.html
blobce8bf5784a72f221742d464525a9c0d69a44db52
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 .separator {
6 height: 20px;
7 background-color: blue;
9 .spacer {
10 height: 20px;
12 #overflow {
13 overflow-y: scroll;
14 height: 200px;
15 background-color: lightgreen;
17 .margin {
18 height: 40px;
20 #child {
21 height: 160px;
22 background-color: green;
24 </style>
25 </head>
26 <body>
27 <div class="separator"></div>
28 <div class="spacer"></div>
29 <div id="overflow">
30 <div class="margin"></div>
31 <div id="child"></div>
32 <div class="margin"></div>
33 </div>
34 <div class="spacer"></div>
35 <div class="separator"></div>
36 </body>
37 </html>