OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
4 <script> | 4 <script> |
5 if (window.testRunner) | 5 if (window.testRunner) |
6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
7 </script> | 7 </script> |
8 </head> | 8 </head> |
9 <body> | 9 <body> |
10 <select name="myselect" style="visibility: hidden;"> | 10 <select name="myselect" style="visibility: hidden;"> |
11 <option value="1">A</option> | 11 <option value="1">A</option> |
12 <option value="2">B</option> | 12 <option value="2">B</option> |
13 </select> | 13 </select> |
14 <script> | 14 <script> |
15 description("This tests that <select> elements are available by name throu
gh document.all."); | 15 description("This tests that <select> elements are available by name throu
gh document.all."); |
16 shouldBe("document.all.myselect.length", "2"); | 16 shouldBe("document.all.myselect.length", "2"); |
17 </script> | 17 </script> |
18 <script src="../js/resources/js-test-post.js"></script> | |
19 </body> | 18 </body> |
20 </html> | 19 </html> |
OLD | NEW |