Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug27038-3.html
blobee66c79a91621d91abb9d1866c40b5f6fecd8398
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2 <html>
3 <head>
4 <title>tfoot test</title>
5 <style type="text/css">
6 <!--
7 body{background-color:rgb(104, 168, 232);}
8 table{width:100%;}
9 table.test >thead{background-color:red;font-weight:bold;}
10 table.test >tbody{background-color:yellow;font-style:italic;}
11 table.test >tfoot{background-color:blue;}
12 #h1{height:24mm;}
13 #h2{height:25mm;}
14 #main{background-color:green;}
15 div{text-align:center;background-color:#d0d0d0;font-size:6mm}
16 td{ vertical-align:top;text-align:center;font-size:6mm;}
17 td.format{width:50%;}
18 -->
19 </style>
20 </head>
21 <body>
22 <div>Font Size:6mm</div>
23 <table id="main">
24 <tr>
25 <td class="format">
26 <div>Table height at 24mm</div>
27 <table summary="tfoot test with table height at 24mm" id="h1" class="test">
28 <thead><tr><td>THEAD</td></tr></thead>
29 <tfoot><tr><td>TFOOT</td></tr></tfoot>
30 <tbody><tr><td>TBODY</td></tr></tbody>
31 </table>
32 </td>
33 <td class="format">
34 <div>Table height at 25mm</div>
35 <table summary="tfoot test with table height at 25mm" id="h2" class="test">
36 <thead><tr><td>THEAD</td></tr></thead>
37 <tfoot><tr><td>TFOOT</td></tr></tfoot>
38 <tbody><tr><td>TBODY</td></tr></tbody>
39 </table>
40 </td></tr>
41 </table>
42 </body>
43 </html>