blob: 9c4e8d87cfd8940265ad9c49a400083cd70dd6f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<body>
<table>
<tr id="row">
<th id="header" height="50">If this test does not crash, it has PASSED.</th>
<th>Bug 72004: Crash in styleDidChange when changing a table cell's height.<br></th>
</tr>
</table>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var row = document.getElementById("row");
var header = document.getElementById("header");
row.parentNode.appendChild(header);
</script>
<script>
header.setAttribute("height", 1);
</script>
</body>
</html>
|