Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / zero-colspan-crash.html
blob2e512573811038690e2358aca5dc4b61a5ddbd79
1 <html>
2 <head>
3 <style type="text/css">
4 table
6 table-layout: fixed;
7 width: 1px;
9 </style>
10 <script>
11 if (window.testRunner) {
12 testRunner.dumpAsText();
13 testRunner.waitUntilDone();
15 </script>
16 </head>
17 <body onload="finish()">
18 This test is to ensure that we do not crash while rendering a fixed table layout.
19 <div id="result"><span style='color: red;'>FAIL:</span> Did not complete test</div>
20 <table>
21 <td width="1"></td>
22 <td colspan="65536"></td>
23 </table>
24 <script>
25 function finish()
27 if (window.testRunner)
28 testRunner.notifyDone();
29 document.getElementById("result").innerHTML = "<span style='color: green;'>PASS:</span> Did not crash.";
31 </script>
32 </body>
33 </html>