Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / row-height-recalc.html
blob86614524af0ae4e3142b66182bae41b8bf5e8b4e
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5 </head>
6 <body>
7 <p>
8 Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=9012">http://bugzilla.opendarwin.org/show_bug.cgi?id=9012</a>
9 Row height not updated when cell heights change</i>.
10 </p>
11 <hr>
12 <table cellspacing="0" cellpadding="0">
13 <tr style="background: red;">
14 <td style="width: 50px;"></td>
15 <td style="width: 50px; height: 50px; background: green;" id="t"></td>
16 </tr>
17 <tr style="background: green;">
18 <td style="height: 100px;" colspan="2"></td>
19 </tr>
20 </table>
21 <script type="text/javascript">
22 document.getElementById("t").style.height='0';
23 </script>
24 </body>
25 </html>