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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/listbox-selection-expected.txt

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (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
(Empty)
1 <select> selection test for mouse events and keyevents.
2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4
5
6 1) Select one item with mouse (no previous selection)
7 PASS selectionPattern("sl1") is "10000"
8 2) Select one item with mouse (with previous selection)
9 PASS selectionPattern("sl2") is "10000"
10 3) Select one item with the keyboard (no previous selection)
11 PASS selectionPattern("sl3") is "00001"
12 4) Select one item with the keyboard (with previous selection)
13 PASS selectionPattern("sl4") is "00100"
14 5) Attempt to select an item cmd-clicking
15 PASS selectionPattern("sl5") is "01000"
16 6) Attempt to select a range shift-clicking
17 PASS selectionPattern("sl6") is "01000"
18 7) Attempt to select a range with the keyboard
19 PASS selectionPattern("sl7") is "00100"
20 8) Select one item with mouse (no previous selection)
21 PASS selectionPattern("sl8") is "10000"
22 9) Select one item with mouse (with previous selection)
23 PASS selectionPattern("sl9") is "10000"
24 10) Select one item with the keyboard (no previous selection)
25 PASS selectionPattern("sl10") is "00001"
26 11) Select one item with the keyboard (with previous selection)
27 PASS selectionPattern("sl11") is "00100"
28 12) Select an item cmd-clicking
29 PASS selectionPattern("sl12") is "01100"
30 13) Select a range shift-clicking
31 PASS selectionPattern("sl13") is "11110"
32 14) Select a range with the keyboard
33 PASS selectionPattern("sl14") is "01100"
34 15) Drag upside-down
35 PASS selectionPattern("sl15") is "01000"
36 PASS mouseMoveToOption("sl15", 3); selectionPattern("sl15") is "01110"
37 PASS mouseMoveToOption("sl15", 2); selectionPattern("sl15") is "01100"
38 16) Active-selection after type-ahead
39 PASS mouseClickOnSelect('sl16', 1); selectionPattern('sl16') is "01000"
40 PASS keyDownOnSelect('sl16', 'e'); selectionPattern('sl16') is "00001"
41 PASS keyDownOnSelect('sl16', 'upArrow', 'rangeSelectionKey'); selectionPattern(' sl16') is "00011"
42 PASS successfullyParsed is true
43
44 TEST COMPLETE
45
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698