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

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

Issue 2338013007: Adapt to changes in html5 spec related to tfoot (Closed)
Patch Set: Patch for landing Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 This test should trigger exceptions on HTMLTableElement, and verify that the mes sages are reasonably helpful. 1 This test should trigger exceptions on HTMLTableElement, and verify that the mes sages are reasonably helpful.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS t.caption = null threw exception NotFoundError: Failed to set the 'caption' property on 'HTMLTableElement': The new child element is null.. 6 PASS t.caption = null threw exception NotFoundError: Failed to set the 'caption' property on 'HTMLTableElement': The new child element is null..
7 PASS t.caption = document.body threw exception TypeError: Failed to set the 'cap tion' property on 'HTMLTableElement': The provided value is not of type 'HTMLTab leCaptionElement'.. 7 PASS t.caption = document.body threw exception TypeError: Failed to set the 'cap tion' property on 'HTMLTableElement': The provided value is not of type 'HTMLTab leCaptionElement'..
8 PASS t.tHead = null threw exception NotFoundError: Failed to set the 'tHead' pro perty on 'HTMLTableElement': The new child element is null.. 8 PASS t.tHead = null threw exception NotFoundError: Failed to set the 'tHead' pro perty on 'HTMLTableElement': The new child element is null..
9 PASS t.tHead = document.body threw exception TypeError: Failed to set the 'tHead ' property on 'HTMLTableElement': The provided value is not of type 'HTMLTableSe ctionElement'.. 9 PASS t.tHead = document.body threw exception TypeError: Failed to set the 'tHead ' property on 'HTMLTableElement': The provided value is not of type 'HTMLTableSe ctionElement'..
10 PASS t.tFoot = null threw exception NotFoundError: Failed to set the 'tFoot' pro perty on 'HTMLTableElement': The new child element is null.. 10 PASS t.createTFoot() is t.tFoot
11 PASS t.tFoot is non-null.
12 PASS t.tFoot = null did not throw exception.
13 PASS t.tFoot is null
11 PASS t.tFoot = document.body threw exception TypeError: Failed to set the 'tFoot ' property on 'HTMLTableElement': The provided value is not of type 'HTMLTableSe ctionElement'.. 14 PASS t.tFoot = document.body threw exception TypeError: Failed to set the 'tFoot ' property on 'HTMLTableElement': The provided value is not of type 'HTMLTableSe ctionElement'..
12 PASS t.insertRow(-2) threw exception IndexSizeError: Failed to execute 'insertRo w' on 'HTMLTableElement': The index provided (-2) is less than -1.. 15 PASS t.insertRow(-2) threw exception IndexSizeError: Failed to execute 'insertRo w' on 'HTMLTableElement': The index provided (-2) is less than -1..
13 PASS t.insertRow(1) threw exception IndexSizeError: Failed to execute 'insertRow ' on 'HTMLTableElement': The index provided (1) is greater than the number of ro ws in the table (0).. 16 PASS t.insertRow(1) threw exception IndexSizeError: Failed to execute 'insertRow ' on 'HTMLTableElement': The index provided (1) is greater than the number of ro ws in the table (0)..
14 PASS t.deleteRow(-2) threw exception IndexSizeError: Failed to execute 'deleteRo w' on 'HTMLTableElement': The index provided (-2) is less than -1.. 17 PASS t.deleteRow(-2) threw exception IndexSizeError: Failed to execute 'deleteRo w' on 'HTMLTableElement': The index provided (-2) is less than -1..
15 PASS t.deleteRow(2) threw exception IndexSizeError: Failed to execute 'deleteRow ' on 'HTMLTableElement': The index provided (2) is greater than the number of ro ws in the table (1).. 18 PASS t.deleteRow(2) threw exception IndexSizeError: Failed to execute 'deleteRow ' on 'HTMLTableElement': The index provided (2) is greater than the number of ro ws in the table (1)..
16 PASS t.deleteRow() threw exception TypeError: Failed to execute 'deleteRow' on ' HTMLTableElement': 1 argument required, but only 0 present.. 19 PASS t.deleteRow() threw exception TypeError: Failed to execute 'deleteRow' on ' HTMLTableElement': 1 argument required, but only 0 present..
17 PASS successfullyParsed is true 20 PASS successfullyParsed is true
18 21
19 TEST COMPLETE 22 TEST COMPLETE
20 23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698