20 <script src=
"../../resources/js-test.js"></script>
23 <div style=
"height: 300px">
24 <table border=
"1" style=
"height: 100%">
26 <td class=
"binding"></td>
30 <td class=
"filler" ></td>
31 <td class=
"filler" ></td>
38 function toggleBigRows()
40 var table
= document
.querySelector("table")
43 table
.classList
.add("big");
45 table
.classList
.remove("big");
48 description("Regression(99212): table rows get incorrect height after changing some cells' height<br>https://bugs.webkit.org/show_bug.cgi?id=74303");
49 firstRow
= document
.getElementById("firstRow");
51 shouldBe("getComputedStyle(firstRow, '').getPropertyValue('height')", "'44px'");
54 shouldBe("getComputedStyle(firstRow, '').getPropertyValue('height')", "'84px'");
56 shouldBe("getComputedStyle(firstRow, '').getPropertyValue('height')", "'44px'");