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> |