| 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="../fast/js/resources/js-test-pre.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> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 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 <script src="../fast/js/resources/js-test-post.js"></script> | 34 <script src="../fast/js/resources/js-test-post.js"></script> |
| 35 </body> | 35 </body> |
| 36 </html> | 36 </html> |
| OLD | NEW |