Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug27038-1.html
blobd337714b0ddc02cf0217f370709a9f0cbee0029e
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
3 <html>
4 <head>
5 <title>tfoot css</title>
6 <style type="text/css">
7 <!--
8 table{height:100%;}
9 thead{font-weight:bold}
10 tfoot{font-weight:bold}
11 -->
12 </style>
13 </head>
14 <body>
15 <table summary="tfoot test">
16 <thead>
17 <tr>
18 <td>THEAD</td>
19 </tr>
20 </thead>
21 <tfoot>
22 <tr>
23 <td>TFOOT</td>
24 </tr>
25 </tfoot>
26 <tbody>
27 <tr>
28 <td>TBODY</td>
29 </tr>
30 </tbody>
31 </table>
34 </body>
35 </html>