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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/exceptions-expected.txt

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/HTMLTableElement/exceptions-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/exceptions-expected.txt b/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/exceptions-expected.txt
deleted file mode 100644
index 0bb3a466767ab8ee8eb7a6cb451439e9807d5e91..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/exceptions-expected.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-This test should trigger exceptions on HTMLTableElement, and verify that the messages are reasonably helpful.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS t.caption = null threw exception NotFoundError: Failed to set the 'caption' property on 'HTMLTableElement': The new child element is null..
-PASS t.caption = document.body threw exception TypeError: Failed to set the 'caption' property on 'HTMLTableElement': The provided value is not of type 'HTMLTableCaptionElement'..
-PASS t.tHead = null threw exception NotFoundError: Failed to set the 'tHead' property on 'HTMLTableElement': The new child element is null..
-PASS t.tHead = document.body threw exception TypeError: Failed to set the 'tHead' property on 'HTMLTableElement': The provided value is not of type 'HTMLTableSectionElement'..
-PASS t.createTFoot() is t.tFoot
-PASS t.tFoot is non-null.
-PASS t.tFoot = null did not throw exception.
-PASS t.tFoot is null
-PASS t.tFoot = document.body threw exception TypeError: Failed to set the 'tFoot' property on 'HTMLTableElement': The provided value is not of type 'HTMLTableSectionElement'..
-PASS t.insertRow(-2) threw exception IndexSizeError: Failed to execute 'insertRow' on 'HTMLTableElement': The index provided (-2) is less than -1..
-PASS t.insertRow(1) threw exception IndexSizeError: Failed to execute 'insertRow' on 'HTMLTableElement': The index provided (1) is greater than the number of rows in the table (0)..
-PASS t.deleteRow(-2) threw exception IndexSizeError: Failed to execute 'deleteRow' on 'HTMLTableElement': The index provided (-2) is less than -1..
-PASS t.deleteRow(2) threw exception IndexSizeError: Failed to execute 'deleteRow' on 'HTMLTableElement': The index provided (2) is greater than the number of rows in the table (1)..
-PASS t.deleteRow() threw exception TypeError: Failed to execute 'deleteRow' on 'HTMLTableElement': 1 argument required, but only 0 present..
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698