Fixed GCC complaints (recursion fallout 3, yay).
[mozilla-central.git] / layout / reftests / margin-collapsing / table-caption-bottom-1.html
blobd1622a4611f5cecebc7daade4e3ca8f910f16a83
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 .separator {
6 height: 20px;
7 background-color: green;
9 #table {
10 display: table;
11 background-color: red;
12 width: 100px;
14 #caption {
15 display: table-caption;
16 caption-side: bottom;
17 height: 20px;
18 background-color: blue;
19 margin: 20px 0;
21 #cell {
22 display: table-cell;
23 height: 20px;
25 </style>
26 </head>
27 <body>
28 <div class="separator"></div>
29 <div id="table">
30 <div id="caption"></div>
31 <div id="cell"></div>
32 </div>
33 <div class="separator"></div>
34 </body>
35 </html>