Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / nested-percent-height-table.html
blobd988a2ce8ec1c2a63a9042a2110ace5b35ebfc16
1 <h3>Height:100% Problems</h3>
3 <p>In the example below, the inner table should be 300 pixels tall. Instead the height:100% on the table
4 cell isn't honored.</p>
6 <table height="300" style="background-color:red" align=center cellpadding="0" cellspacing="0">
7 <tr><td style="background-color:blue">
8 <table style="background-color:green" width=100% height="100%" border="0">
9 <tr>
10 <td>Inner table</td>
11 </table>
12 </td></tr>
13 </table>
14 </div>