OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../resources/js-test.js"></script> |
4 <script> | 4 <script> |
5 if (window.testRunner) | 5 if (window.testRunner) |
6 testRunner.waitUntilDone(); | 6 testRunner.waitUntilDone(); |
7 | 7 |
8 function runTest() { | 8 function runTest() { |
9 description("This tests that navigating in a multiselect list updates se
lection and the active selected option and sends a notification."); | 9 description("This tests that navigating in a multiselect list updates se
lection and the active selected option and sends a notification."); |
10 | 10 |
11 if (window.accessibilityController) { | 11 if (window.accessibilityController) { |
12 var menulist = document.getElementById("menulist"); | 12 var menulist = document.getElementById("menulist"); |
13 menulist.focus(); | 13 menulist.focus(); |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 <option>Two</option> | 75 <option>Two</option> |
76 <option>Three</option> | 76 <option>Three</option> |
77 <option>Four</option> | 77 <option>Four</option> |
78 </select> | 78 </select> |
79 | 79 |
80 <p id="description"></p> | 80 <p id="description"></p> |
81 <div id="console"></div> | 81 <div id="console"></div> |
82 | 82 |
83 </body> | 83 </body> |
84 </html> | 84 </html> |
OLD | NEW |