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="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> |
11 <select id="theMultipleSelect" multiple> | 11 <select id="theMultipleSelect" multiple> |
12 <option value="a">A</option> | 12 <option value="a">A</option> |
13 <option value="b">B</option> | 13 <option value="b">B</option> |
14 <option value="c">C</option> | 14 <option value="c">C</option> |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 </body> | 60 </body> |
61 </html> | 61 </html> |
OLD | NEW |