Backed out changeset 39e6a7e77cfb (bug 1927808) for causing multiple failures. CLOSED...
[gecko.git] / layout / reftests / margin-collapsing / block-zero-height-2a.html
blob1f4cc6f3a3e42c2b58277d3304b03d67bde85492
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 #a {
6 background-color: green;
8 #b {
9 height: 20px;
11 #c {
12 margin-top: 30px;
13 margin-bottom: 40px;
14 height: 0;
16 #d {
17 height: 10px; width: 100px;
18 background-color: red;
20 #e {
21 height: 20px;
22 background-color: green;
24 </style>
25 </head>
26 <body>
27 <div id="a">
28 <div id="b"></div>
29 <div id="c">
30 <div id="d"></div>
31 </div>
32 </div>
33 <div id="e"></div>
34 </body>
35 </html>