Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug57300.html
blobf7924cb0b8563ceb52c2340dbd54896ae8d9ff2e
1 <html>
2 <head>
3 <title>Percentage heights on table cells</title>
4 </head>
5 <body>
7 <table border height="200">
8 <tr><td>This is the first cell in a 200 pixel high table.</td></tr>
9 <tr><td height="50%">This is the second cell, with <b>cell</b> height 50%.</td></tr>
10 <tr><td>This is the third cell.</td></tr>
11 </table>
13 <table border>
14 <tr><td>This is the first cell in an auto-height table.</td></tr>
15 <tr><td height="50%">This is the second cell, with <b>cell</b> height 50%.</td></tr>
16 <tr><td>This is the third cell.</td></tr>
17 </table>
19 <table border height="200">
20 <tr><td>This is the first cell in a 200 pixel high table.</td></tr>
21 <tr height="50%"><td>This is the second cell, with <b>row</b> height 50%.</td></tr>
22 <tr><td>This is the third cell.</td></tr>
23 </table>
25 <table border>
26 <tr><td>This is the first cell in an auto-height table.</td></tr>
27 <tr height="50%"><td>This is the second cell, with <b>row</b> height 50%.</td></tr>
28 <tr><td>This is the third cell.</td></tr>
29 </table>
31 </body>