| Index: third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/insertCell.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/insertCell.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/insertCell.html
|
| deleted file mode 100644
|
| index 6289962aa811294834352b411140a8eb0f496488..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/insertCell.html
|
| +++ /dev/null
|
| @@ -1,28 +0,0 @@
|
| -<html>
|
| -
|
| -<head>
|
| -<script type="text/javascript">
|
| -
|
| -function test()
|
| -{
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| - var tr = document.getElementById('row');
|
| - tr.insertCell(0).innerHTML = "<td>cell inside table inside cell 0</td>";
|
| - tr.insertCell(1).innerHTML = "<td>cell inside table inside cell 1</td>";
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -
|
| -<body onload="test()">
|
| -
|
| -<p>This tests a particular case of insertCell that was crashing on ebay at the time the test was written.</p>
|
| -
|
| -<p><table><tr id="row"></tr></table></p>
|
| -
|
| -<p>If there was no crash, and you can see text above mentioning cell 1 as well as cell 0, the test passed.</p>
|
| -
|
| -</body>
|
| -
|
| -</html>
|
|
|