Fixed GCC complaints (recursion fallout 3, yay).
[mozilla-central.git] / layout / reftests / margin-collapsing / block-abs-pos-2.html
blobeaa42ea9dcba4f4bcc09c0e8923632aa1ac43698
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 #a {
6 background-color: green;
7 width: 200px;
8 position: absolute;
9 top: 20px; left: 20px;
11 #b {
12 background-color: blue;
13 margin-top: 40px;
14 margin-bottom: 40px;
15 height: 100px;
17 </style>
18 </head>
19 <body>
20 <div id="a">
21 <div id="b"></div>
22 </div>
23 </body>
24 </html>