summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/crash-splitColumn-3.html
blob: 7275e559f7c07e1809179d4f9e61bc334a809815 (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>
<head>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

function crash()
{
    var firstCell = document.getElementById("firstCell");
    firstCell.parentNode.removeChild(firstCell);
}

window.addEventListener("load", crash, false);
</script>
</head>
<body>
<p> Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=70171">70171</a>: Crash in LayoutTableSection::splitColumn</p>
<p> This test PASSES if it does not CRASH or ASSERT.</p>
<table><tr><td id="firstCell">foobar</td><td colspan="2"></td><td></td></tr></table>
</body>
</html>