| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <link rel="stylesheet" href="../fast/js/resources/js-test-style.css"> | |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 5 <script> | 4 <script> |
| 6 if (window.testRunner) | 5 if (window.testRunner) |
| 7 testRunner.waitUntilDone(); | 6 testRunner.waitUntilDone(); |
| 8 | 7 |
| 9 function runTest() { | 8 function runTest() { |
| 10 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."); |
| 11 | 10 |
| 12 if (window.accessibilityController) { | 11 if (window.accessibilityController) { |
| 13 var menulist = document.getElementById("menulist"); | 12 var menulist = document.getElementById("menulist"); |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 <option>Two</option> | 75 <option>Two</option> |
| 77 <option>Three</option> | 76 <option>Three</option> |
| 78 <option>Four</option> | 77 <option>Four</option> |
| 79 </select> | 78 </select> |
| 80 | 79 |
| 81 <p id="description"></p> | 80 <p id="description"></p> |
| 82 <div id="console"></div> | 81 <div id="console"></div> |
| 83 | 82 |
| 84 </body> | 83 </body> |
| 85 </html> | 84 </html> |
| OLD | NEW |