Bug 1800044 [wpt PR 36907] - Fix same URL navigation test, a=testonly
[gecko.git] / layout / reftests / margin-collapsing / inline-block-child-3.html
blobe0bd8ae1db4e8164608d61eeb9969fd91a660b7e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 body {
6 margin: 0;
8 #block {
9 background-color: green;
10 margin: 10px 0;
12 #inline-block {
13 display: inline-block;
14 margin: 10px 0;
15 background-color: lightgreen;
17 </style>
18 </head>
19 <body>
20 <div id="block"><div id="inline-block">Hello Kitty</div></div>
21 </body>
22 </html>