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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/exceptions.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/exceptions.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/exceptions.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/exceptions.html
deleted file mode 100644
index f56ddae93619e36bb030685dce8edb1761334c50..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableRowElement/exceptions.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <script src="../../../resources/js-test.js"></script>
-</head>
-<body>
- <script>
- description("This test should trigger exceptions on HTMLTableRowElement, and verify that the messages are reasonably helpful.");
-
- var tr = document.createElement('tr');
-
- shouldThrow("tr.insertCell(-2)");
- shouldThrow("tr.insertCell(1)");
-
- tr.insertCell();
-
- shouldThrow("tr.deleteCell(-2)");
- shouldThrow("tr.deleteCell(2)");
- shouldThrow("tr.deleteCell()");
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698