Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLTableRowElement / insertCell.html
blob6289962aa811294834352b411140a8eb0f496488
1 <html>
3 <head>
4 <script type="text/javascript">
6 function test()
8 if (window.testRunner)
9 testRunner.dumpAsText();
10 var tr = document.getElementById('row');
11 tr.insertCell(0).innerHTML = "<td>cell inside table inside cell 0</td>";
12 tr.insertCell(1).innerHTML = "<td>cell inside table inside cell 1</td>";
15 </script>
16 </head>
18 <body onload="test()">
20 <p>This tests a particular case of insertCell that was crashing on ebay at the time the test was written.</p>
22 <p><table><tr id="row"></tr></table></p>
24 <p>If there was no crash, and you can see text above mentioning cell 1 as well as cell 0, the test passed.</p>
26 </body>
28 </html>