OLD | NEW |
1 <!-- | 1 <!-- |
2 @MAC-DENY:AXLayoutComplete* | 2 @MAC-DENY:AXLayoutComplete* |
3 --> | 3 --> |
4 <!DOCTYPE html> | 4 <!DOCTYPE html> |
5 <html> | 5 <html> |
6 <body> | 6 <body> |
7 <select> | 7 <select> |
8 <option selected>Apple</option> | 8 <option selected>Apple</option> |
9 <option>Orange</option> | 9 <option>Orange</option> |
10 <option>Banana</option> | 10 <option>Banana</option> |
11 </select> | 11 </select> |
12 <script> | 12 <script> |
13 document.querySelector('select').focus(); | 13 var comboBox = document.querySelector('select'); |
| 14 comboBox.focus(); |
| 15 // Expand the combo box. |
| 16 var clickEvent = document.createEvent('MouseEvents'); |
| 17 clickEvent.initMouseEvent('mousedown', true, true, window); |
| 18 comboBox.dispatchEvent(clickEvent); |
14 function go() { | 19 function go() { |
15 document.querySelector('select').selectedIndex = 1; | 20 document.querySelector('select').selectedIndex = 1; |
16 } | 21 } |
17 </script> | 22 </script> |
18 </body> | 23 </body> |
19 </html> | 24 </html> |
OLD | NEW |