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

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

Issue 1493673002: Drop [LegacyInterfaceTypeChecking] for HTMLTableElement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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..
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..
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..
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'..
6 PASS t.insertRow(-2) threw exception IndexSizeError: Failed to execute 'insertRo w' on 'HTMLTableElement': The index provided (-2) is less than -1.. 12 PASS t.insertRow(-2) threw exception IndexSizeError: Failed to execute 'insertRo w' on 'HTMLTableElement': The index provided (-2) is less than -1..
7 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).. 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)..
8 PASS t.deleteRow(-2) threw exception IndexSizeError: Failed to execute 'deleteRo w' on 'HTMLTableElement': The index provided (-2) is less than -1.. 14 PASS t.deleteRow(-2) threw exception IndexSizeError: Failed to execute 'deleteRo w' on 'HTMLTableElement': The index provided (-2) is less than -1..
9 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).. 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)..
10 PASS t.deleteRow() threw exception TypeError: Failed to execute 'deleteRow' on ' HTMLTableElement': 1 argument required, but only 0 present.. 16 PASS t.deleteRow() threw exception TypeError: Failed to execute 'deleteRow' on ' HTMLTableElement': 1 argument required, but only 0 present..
11 PASS successfullyParsed is true 17 PASS successfullyParsed is true
12 18
13 TEST COMPLETE 19 TEST COMPLETE
14 20
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698