Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(990)

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/insertCell.html

Issue 2785963002: Move tests for table elements to LayoutTests/html/tabular_data/. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698