Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / table-cell-change-height-with-needsCellRecalc-section.html
blobc33bec8ff73a35223fe0ab8adb97bf36b3ee7aad
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <table id="table">
5 <tr>
6 <th id="header" height="50">Bug 72004: Crash in styleDidChange when changing a table cell's height.<br></th>
7 <th>If this test does not crash, it has PASSED.</th>
8 </tr>
9 </table>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
14 var table = document.getElementById("table");
15 var row = document.createElement("tr");
16 table.appendChild(row);
17 </script>
18 <script>
19 // This sets the recalcCells bit on the section.
20 row.parentNode.removeChild(row);
22 // Change on cell's height.
23 document.getElementById("header").setAttribute("height", 1);
24 </script>
25 </body>
26 </html>