Backed out changeset 39e6a7e77cfb (bug 1927808) for causing multiple failures. CLOSED...
[gecko.git] / layout / reftests / margin-collapsing / caption-sibling-1-noref.html
blob796478cfaa74b0b4eacf17c03057167e7bd60988
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <!-- dbaron thinks the validity of this test is questionable, see
5 https://bugzilla.mozilla.org/show_bug.cgi?id=477462#c20 and #c21 -->
6 <style type="text/css">
7 #table {
8 width: 100px;
10 #caption1 {
11 height: 20px;
12 background-color: red;
13 margin-bottom: 30px;
15 #caption2 {
16 height: 20px;
17 background-color: blue;
18 margin-bottom: 30px;
20 #caption3 {
21 height: 20px;
22 background-color: green;
24 </style>
25 </head>
26 <body>
27 <div id="table">
28 <div id="caption1"></div>
29 <div id="caption2"></div>
30 <div id="caption3"></div>
31 </div>
32 </body>
33 </html>