OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 | 4 |
5 <select id="multiselect" multiple="multiple"> | 5 <select id="multiselect" multiple="multiple"> |
6 <option id="optiona">a</option> | 6 <option id="optiona">a</option> |
7 <option>b</option> | 7 <option>b</option> |
8 </select> | 8 </select> |
9 <input id="selectable"> | 9 <input id="selectable"> |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 eventSender.mouseMoveTo(multiselect.offsetLeft + 5, multiselect.offsetTop +
5); | 24 eventSender.mouseMoveTo(multiselect.offsetLeft + 5, multiselect.offsetTop +
5); |
25 eventSender.mouseDown(); | 25 eventSender.mouseDown(); |
26 eventSender.mouseUp(); | 26 eventSender.mouseUp(); |
27 } else { | 27 } else { |
28 document.write("To manually test, click on the 'a' option"); | 28 document.write("To manually test, click on the 'a' option"); |
29 } | 29 } |
30 </script> | 30 </script> |
31 | 31 |
32 </body> | 32 </body> |
33 </html> | 33 </html> |
OLD | NEW |