| OLD | NEW |
| 1 <select> selection test for mouse events and keyevents. | 1 <select> selection test for mouse events and keyevents. |
| 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 1) Select one item with mouse (no previous selection) | 6 1) Select one item with mouse (no previous selection) |
| 7 PASS selectionPattern("sl1") is "10000" | 7 PASS selectionPattern("sl1") is "10000" |
| 8 2) Select one item with mouse (with previous selection) | 8 2) Select one item with mouse (with previous selection) |
| 9 PASS selectionPattern("sl2") is "10000" | 9 PASS selectionPattern("sl2") is "10000" |
| 10 3) Select one item with the keyboard (no previous selection) | 10 3) Select one item with the keyboard (no previous selection) |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 12) Select an item cmd-clicking | 28 12) Select an item cmd-clicking |
| 29 PASS selectionPattern("sl12") is "01100" | 29 PASS selectionPattern("sl12") is "01100" |
| 30 13) Select a range shift-clicking | 30 13) Select a range shift-clicking |
| 31 PASS selectionPattern("sl13") is "11110" | 31 PASS selectionPattern("sl13") is "11110" |
| 32 14) Select a range with the keyboard | 32 14) Select a range with the keyboard |
| 33 PASS selectionPattern("sl14") is "01100" | 33 PASS selectionPattern("sl14") is "01100" |
| 34 15) Drag upside-down | 34 15) Drag upside-down |
| 35 PASS selectionPattern("sl15") is "01000" | 35 PASS selectionPattern("sl15") is "01000" |
| 36 PASS mouseMoveToOption("sl15", 3); selectionPattern("sl15") is "01110" | 36 PASS mouseMoveToOption("sl15", 3); selectionPattern("sl15") is "01110" |
| 37 PASS mouseMoveToOption("sl15", 2); selectionPattern("sl15") is "01100" | 37 PASS mouseMoveToOption("sl15", 2); selectionPattern("sl15") is "01100" |
| 38 PASS sl15.add(new Option("a")); eventSender.keyDown("upArrow"); selectionPattern
("sl15") is "010000" | 38 PASS sl15.add(new Option("a")); eventSender.keyDown("ArrowUp"); selectionPattern
("sl15") is "010000" |
| 39 16) Active-selection after type-ahead | 39 16) Active-selection after type-ahead |
| 40 PASS mouseClickOnSelect('sl16', 1); selectionPattern('sl16') is "01000" | 40 PASS mouseClickOnSelect('sl16', 1); selectionPattern('sl16') is "01000" |
| 41 PASS keyDownOnSelect('sl16', 'e'); selectionPattern('sl16') is "00001" | 41 PASS keyDownOnSelect('sl16', 'e'); selectionPattern('sl16') is "00001" |
| 42 PASS keyDownOnSelect('sl16', 'upArrow', 'rangeSelectionKey'); selectionPattern('
sl16') is "00011" | 42 PASS keyDownOnSelect('sl16', 'ArrowUp', 'rangeSelectionKey'); selectionPattern('
sl16') is "00011" |
| 43 PASS successfullyParsed is true | 43 PASS successfullyParsed is true |
| 44 | 44 |
| 45 TEST COMPLETE | 45 TEST COMPLETE |
| 46 | 46 |
| OLD | NEW |