Fixed GCC complaints (recursion fallout 3, yay).
[mozilla-central.git] / layout / reftests / margin-collapsing / block-overflow-1.html
blobb586319b243496e50be3118a50721e6476a8140a
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 .a {
6 height: 20px;
7 background-color: green;
9 #b {
10 margin-top: 20px;
11 margin-bottom: 20px;
12 background-color: red;
13 overflow: visible;
15 #c {
16 height: 200px;
17 background-color: blue;
18 margin-top: 40px;
19 margin-bottom: 40px;
21 </style>
22 </head>
23 <body>
24 <div class="a"></div>
25 <div id="b">
26 <div id="c"></div>
27 </div>
28 <div class="a"></div>
29 </body>
30 </html>