| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 | 4 |
| 5 <select id="theSelect"> | 5 <select id="theSelect"> |
| 6 <option>Item 1</option> | 6 <option>Item 1</option> |
| 7 <option>Item 2</option> | 7 <option>Item 2</option> |
| 8 <option>Item 3</option> | 8 <option>Item 3</option> |
| 9 </select> | 9 </select> |
| 10 <select id="theSelect2" multiple> | 10 <select id="theSelect2" multiple> |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 var mySelect = document.getElementById("theSelect"); | 57 var mySelect = document.getElementById("theSelect"); |
| 58 debug("Running tests on menu list"); | 58 debug("Running tests on menu list"); |
| 59 runTest(); | 59 runTest(); |
| 60 | 60 |
| 61 mySelect = document.getElementById("theSelect2"); | 61 mySelect = document.getElementById("theSelect2"); |
| 62 debug("Running tests on list box"); | 62 debug("Running tests on list box"); |
| 63 runTest(); | 63 runTest(); |
| 64 | 64 |
| 65 </script> | 65 </script> |
| 66 <script src="../../js/resources/js-test-post.js"></script> | |
| 67 | 66 |
| 68 </body> | 67 </body> |
| 69 </html> | 68 </html> |
| OLD | NEW |