Update broken references to image assets
[chromium-blink-merge.git] / content / test / data / accessibility / event / menulist-next.html
blob98d7f3329ab7b025287718150dd3a9841955b56e
1 <!--
2 @MAC-DENY:AXLayoutComplete*
3 -->
4 <!DOCTYPE html>
5 <html>
6 <body>
7 <select>
8 <option selected>Apple</option>
9 <option>Orange</option>
10 <option>Banana</option>
11 </select>
12 <script>
13 document.querySelector('select').focus();
14 function go() {
15 document.querySelector('select').selectedIndex = 1;
17 </script>
18 </body>
19 </html>