OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../resources/js-test.js"></script> | 4 <script src="../../../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <div id="parent"> | 7 <div id="parent"> |
8 <select id="sl16" multiple size=5> | 8 <select id="sl16" multiple size=5> |
9 <option>a</option> | 9 <option>a</option> |
10 <option>b</option> | 10 <option>b</option> |
11 <option>c</option> | 11 <option>c</option> |
12 <option>d</option> | 12 <option>d</option> |
13 <option>e</option> | 13 <option>e</option> |
14 </select> | 14 </select> |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 | 157 |
158 debug("16) Active-selection after type-ahead"); | 158 debug("16) Active-selection after type-ahead"); |
159 shouldBeEqualToString("mouseClickOnSelect('sl16', 1); selectionPattern('sl16')",
"01000"); | 159 shouldBeEqualToString("mouseClickOnSelect('sl16', 1); selectionPattern('sl16')",
"01000"); |
160 shouldBeEqualToString("keyDownOnSelect('sl16', 'e'); selectionPattern('sl16')",
"00001"); | 160 shouldBeEqualToString("keyDownOnSelect('sl16', 'e'); selectionPattern('sl16')",
"00001"); |
161 shouldBeEqualToString("keyDownOnSelect('sl16', 'upArrow', 'rangeSelectionKey');
selectionPattern('sl16')", "00011"); | 161 shouldBeEqualToString("keyDownOnSelect('sl16', 'upArrow', 'rangeSelectionKey');
selectionPattern('sl16')", "00011"); |
162 | 162 |
163 document.getElementById("parent").remove(); | 163 document.getElementById("parent").remove(); |
164 </script> | 164 </script> |
165 </body> | 165 </body> |
166 </html> | 166 </html> |
OLD | NEW |