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 |
index 6291493407019ff75eae0ca9e1ab61681d787805..8491c06d4b446818616698b19692ee2334158f6e 100644 |
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/exceptions-expected.txt |
+++ b/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/exceptions-expected.txt |
@@ -3,6 +3,12 @@ This test should trigger exceptions on HTMLTableElement, and verify that the mes |
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.tFoot = null threw exception NotFoundError: Failed to set the 'tFoot' property on 'HTMLTableElement': The new child element 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.. |