Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla_expected_failures / bugs / bug51000.html
blob5c249676c9eb21677ce6f2ff7e2ba7666aa5542d
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
2 <html>
3 <head>
4 <title>height</title>
5 <style type="text/css">
6 thead {
7 height: 300px
9 tbody {
10 height: 300px
12 tfoot {
13 height: 300px
15 </style>
16 </head>
17 <body>
19 <p>300xp height value set on THEAD, TBODY, and TFOOT</p>
21 <table border>
22 <thead>
23 <tr>
24 <th>This THEAD should be 300px high</td>
25 </tr>
26 </thead>
28 <tfoot>
29 <tr>
30 <td>This TFOOT should be 300px high</td>
31 </tr>
32 </tfoot>
34 <tbody>
35 <tr>
36 <td>This TBODY should be 300px hight</td>
37 </tr>
38 </tbody>
40 </table>
42 </body>
43 </html>