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

Side by Side Diff: LayoutTests/fast/forms/select/select-add-expected.txt

Issue 716773002: Use union types for HTMLSelectElement.add()'s arguments (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: added FIXME Created 6 years, 1 month 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 Test select.add() method 1 Test select.add() method
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 Test select 6 Test select
7 PASS addOption(0) is "X,0,1,2" 7 PASS addOption(0) is "X,0,1,2"
8 PASS addOption(1) is "0,X,1,2" 8 PASS addOption(1) is "0,X,1,2"
9 PASS addOption(2) is "0,1,X,2" 9 PASS addOption(2) is "0,1,X,2"
10 PASS addOption(3) is "0,1,2,X" 10 PASS addOption(3) is "0,1,2,X"
11 PASS addOption(100) is "0,1,2,X" 11 PASS addOption(100) is "0,1,2,X"
12 PASS addOption(-100) is "0,1,2,X" 12 PASS addOption(-100) is "0,1,2,X"
13 PASS getSelectOptions() is "0,1,2,X" 13 PASS getSelectOptions() is "0,1,2,X"
14 PASS addOption(undefined) is "0,1,2,X" 14 PASS addOption(undefined) is "0,1,2,X"
15 PASS addOption(null) is "0,1,2,X" 15 PASS addOption(null) is "0,1,2,X"
16 PASS addOption(NaN) is "X,0,1,2" 16 PASS addOption(NaN) is "X,0,1,2"
17 PASS addOption(Infinity) is "X,0,1,2" 17 PASS addOption(Infinity) is "X,0,1,2"
18 PASS addOption(-Infinity) is "X,0,1,2" 18 PASS addOption(-Infinity) is "X,0,1,2"
19 PASS addOption("foo") is "X,0,1,2" 19 PASS addOption("foo") is "X,0,1,2"
20 PASS select.add() threw exception TypeError: Failed to execute 'add' on 'HTMLSel ectElement': 1 argument required, but only 0 present.. 20 PASS select.add() threw exception TypeError: Failed to execute 'add' on 'HTMLSel ectElement': 1 argument required, but only 0 present..
21 PASS select.add("foo") threw exception TypeError: Failed to execute 'add' on 'HT MLSelectElement': parameter 1 is not of type 'HTMLElement'.. 21 PASS select.add("foo") threw exception TypeError: Failed to execute 'add' on 'HT MLSelectElement': Not a valid union member..
22 PASS select.add("foo", 0) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': parameter 1 is not of type 'HTMLElement'.. 22 PASS select.add("foo", 0) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': Not a valid union member..
23 PASS select.add(undefined) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': parameter 1 is not of type 'HTMLElement'.. 23 PASS select.add(undefined) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': Not a valid union member..
24 PASS select.add(undefined, 0) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': parameter 1 is not of type 'HTMLElement'.. 24 PASS select.add(undefined, 0) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': Not a valid union member..
25 PASS select.add(null) threw exception TypeError: Failed to execute 'add' on 'HTM LSelectElement': parameter 1 is not of type 'HTMLElement'.. 25 PASS select.add(null) threw exception TypeError: Failed to execute 'add' on 'HTM LSelectElement': Not a valid union member..
26 PASS select.add(null, 0) threw exception TypeError: Failed to execute 'add' on ' HTMLSelectElement': parameter 1 is not of type 'HTMLElement'.. 26 PASS select.add(null, 0) threw exception TypeError: Failed to execute 'add' on ' HTMLSelectElement': Not a valid union member..
27 PASS getSelectOptions() is "0,X,Y,1,2" 27 PASS getSelectOptions() is "0,X,Y,1,2"
28 Test select multiple 28 Test select multiple
29 PASS addOption(0) is "X,0,1,2" 29 PASS addOption(0) is "X,0,1,2"
30 PASS addOption(1) is "0,X,1,2" 30 PASS addOption(1) is "0,X,1,2"
31 PASS addOption(2) is "0,1,X,2" 31 PASS addOption(2) is "0,1,X,2"
32 PASS addOption(3) is "0,1,2,X" 32 PASS addOption(3) is "0,1,2,X"
33 PASS addOption(100) is "0,1,2,X" 33 PASS addOption(100) is "0,1,2,X"
34 PASS addOption(-100) is "0,1,2,X" 34 PASS addOption(-100) is "0,1,2,X"
35 PASS getSelectOptions() is "0,1,2,X" 35 PASS getSelectOptions() is "0,1,2,X"
36 PASS addOption(undefined) is "0,1,2,X" 36 PASS addOption(undefined) is "0,1,2,X"
37 PASS addOption(null) is "0,1,2,X" 37 PASS addOption(null) is "0,1,2,X"
38 PASS addOption(NaN) is "X,0,1,2" 38 PASS addOption(NaN) is "X,0,1,2"
39 PASS addOption(Infinity) is "X,0,1,2" 39 PASS addOption(Infinity) is "X,0,1,2"
40 PASS addOption(-Infinity) is "X,0,1,2" 40 PASS addOption(-Infinity) is "X,0,1,2"
41 PASS addOption("foo") is "X,0,1,2" 41 PASS addOption("foo") is "X,0,1,2"
42 PASS select.add() threw exception TypeError: Failed to execute 'add' on 'HTMLSel ectElement': 1 argument required, but only 0 present.. 42 PASS select.add() threw exception TypeError: Failed to execute 'add' on 'HTMLSel ectElement': 1 argument required, but only 0 present..
43 PASS select.add("foo") threw exception TypeError: Failed to execute 'add' on 'HT MLSelectElement': parameter 1 is not of type 'HTMLElement'.. 43 PASS select.add("foo") threw exception TypeError: Failed to execute 'add' on 'HT MLSelectElement': Not a valid union member..
44 PASS select.add("foo", 0) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': parameter 1 is not of type 'HTMLElement'.. 44 PASS select.add("foo", 0) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': Not a valid union member..
45 PASS select.add(undefined) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': parameter 1 is not of type 'HTMLElement'.. 45 PASS select.add(undefined) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': Not a valid union member..
46 PASS select.add(undefined, 0) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': parameter 1 is not of type 'HTMLElement'.. 46 PASS select.add(undefined, 0) threw exception TypeError: Failed to execute 'add' on 'HTMLSelectElement': Not a valid union member..
47 PASS select.add(null) threw exception TypeError: Failed to execute 'add' on 'HTM LSelectElement': parameter 1 is not of type 'HTMLElement'.. 47 PASS select.add(null) threw exception TypeError: Failed to execute 'add' on 'HTM LSelectElement': Not a valid union member..
48 PASS select.add(null, 0) threw exception TypeError: Failed to execute 'add' on ' HTMLSelectElement': parameter 1 is not of type 'HTMLElement'.. 48 PASS select.add(null, 0) threw exception TypeError: Failed to execute 'add' on ' HTMLSelectElement': Not a valid union member..
49 PASS getSelectOptions() is "0,X,Y,1,2" 49 PASS getSelectOptions() is "0,X,Y,1,2"
50 PASS successfullyParsed is true 50 PASS successfullyParsed is true
51 51
52 TEST COMPLETE 52 TEST COMPLETE
53 53
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/incompatible-operations-expected.txt ('k') | LayoutTests/fast/js/script-tests/select-options-add.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698