Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / fixed-table-layout-large-colspan-crash.html
blob2e73371482e5ffd10feb1fbd461a194d0d2d19f6
1 <html>
2 <head>
3 <style type="text/css">
4 table {
5 table-layout: fixed;
6 width: 15px;
8 </style>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
13 function finish() {
14 document.getElementById("result").innerHTML = "PASS";
16 </script>
17 </head>
18 <body onload="finish()">
19 <p>Tests that large colspan in a fixed table layout does not result in crash.</p>
20 <div id=result></div>
21 <table>
22 <td colspan="1923138113">
23 </td>
24 </table>
25 </body>
26 </html>