Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / document-all-select.html
blobb2ccb4eb9b04a7c5ce67bb014b3af0e401cd5253
1 <html>
2 <head>
3 <script src="../../resources/js-test.js"></script>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7 </script>
8 </head>
9 <body>
10 <select name="myselect" style="visibility: hidden;">
11 <option value="1">A</option>
12 <option value="2">B</option>
13 </select>
14 <script>
15 description("This tests that &lt;select&gt; elements are available by name through document.all.");
16 shouldBe("document.all.myselect.length", "2");
17 </script>
18 </body>
19 </html>