Fixed GCC complaints (recursion fallout 3, yay).
[mozilla-central.git] / layout / reftests / margin-collapsing / inline-block-child-1-ref.html
blobdc20bc3dc0f89412ffec8f3dff1fc14863b26a5c
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 #a {
6 display: inline-block;
7 background-color: green;
8 height: 40px;
9 padding-top: 20px;
10 padding-bottom: 20px;
12 #b {
13 display: inline-block;
14 height: 40px; width: 200px;
15 background-color: blue;
16 vertical-align: bottom;
18 </style>
19 </head>
20 <body>
21 <div id="a">
22 <div id="b"></div>
23 </div>
24 </body>
25 </html>