Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / fast / table / floating-th.html
blob3944994335984a37ccfea0225083e2c1cf2d4300
1 <html>
2 <head>
3 <title>th with float</title>
4 <style type="text/css" media="screen">
5 table {
6 border: 1px solid black;
9 th {
10 float: left;
13 td {
14 float: right;
16 </style>
17 </head>
18 <body>
20 <table>
21 <thead>
22 <tr><th>Head 1</th><th>Head 2</th></tr>
23 </thead>
24 <tfoot>
25 <tr><td>Footer 1</td><td>Footer 2</td></tr>
26 </tfoot>
27 <tbody>
28 <tr><td>Cell 1</td><td>Cell 2</td></tr>
29 <tr><td>Cell 3</td><td>Cell 4</td></tr>
30 </tbody>
31 </table>
34 </body>
35 </html>