summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/fixed-table-layout-large-colspan-crash.html
blob: 2e73371482e5ffd10feb1fbd461a194d0d2d19f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<html>
<head>
<style type="text/css">
table {
    table-layout: fixed;
    width: 15px;
}
</style>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

function finish() {
    document.getElementById("result").innerHTML = "PASS";
}
</script>
</head>
<body onload="finish()">
<p>Tests that large colspan in a fixed table layout does not result in crash.</p>
<div id=result></div>
<table>
<td colspan="1923138113">
</td>
</table>
</body>
</html>