| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../resources/js-test.js"></script> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <select id="popup"> | 7 <select id="popup"> |
| 8 <optgroup id=optgroup1> | 8 <optgroup id=optgroup1> |
| 9 </optgroup> | 9 </optgroup> |
| 10 </select> | 10 </select> |
| 11 <select id="listbox" multiple> | 11 <select id="listbox" multiple> |
| 12 <optgroup id=optgroup2> | 12 <optgroup id=optgroup2> |
| 13 <option selected> | 13 <option selected> |
| 14 </optgroup> | 14 </optgroup> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 26 if (window.accessibilityController) | 26 if (window.accessibilityController) |
| 27 accessibilityController.accessibleElementById('dummy'); | 27 accessibilityController.accessibleElementById('dummy'); |
| 28 | 28 |
| 29 var listbox = document.getElementById('listbox'); | 29 var listbox = document.getElementById('listbox'); |
| 30 listbox.focus(); | 30 listbox.focus(); |
| 31 | 31 |
| 32 optgroup1.appendChild(optgroup2); | 32 optgroup1.appendChild(optgroup2); |
| 33 </script> | 33 </script> |
| 34 </body> | 34 </body> |
| 35 </html> | 35 </html> |
| OLD | NEW |