| 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="theSelect"> | 7 <select id="theSelect"> |
| 8 <option value="a">A</option> | 8 <option value="a">A</option> |
| 9 <option value="b">B</option> | 9 <option value="b">B</option> |
| 10 </select> | 10 </select> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 sel = document.getElementById("theSelect"); | 50 sel = document.getElementById("theSelect"); |
| 51 runTestsOnSelect(resetSingleSelect); | 51 runTestsOnSelect(resetSingleSelect); |
| 52 | 52 |
| 53 debug("-- List box select:"); | 53 debug("-- List box select:"); |
| 54 sel = document.getElementById("theMultipleSelect"); | 54 sel = document.getElementById("theMultipleSelect"); |
| 55 runTestsOnSelect(resetMultipleSelect); | 55 runTestsOnSelect(resetMultipleSelect); |
| 56 | 56 |
| 57 successfullyParsed = true; | 57 successfullyParsed = true; |
| 58 </script> | 58 </script> |
| 59 | 59 |
| 60 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
| 61 </body> | 60 </body> |
| 62 </html> | 61 </html> |
| OLD | NEW |