Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / multiple-selected-options-innerHTML.html
bloba517c4a318a09f886c71728f12b6a8938a2ee4d7
1 <body>
2 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=25379">bug 25379<a>:
3 Selecting a bank in American Express Pay Bill fails.</p>
4 <p>Both SELECT elements below should say PASS.</p>
5 <select>
6 <option selected>FAIL</option>
7 <option selected>PASS</option>
8 </select>
9 <div id=paymentoptions></div>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
14 document.getElementById("paymentoptions").innerHTML =
15 '<select>' +
16 '<option selected>FAIL</option>' +
17 '<option selected>PASS</option>' +
18 '</select>'
20 if (window.testRunner && document.getElementsByTagName("select")[0].value == "PASS" && document.getElementsByTagName("select")[1].value == "PASS")
21 document.write("PASS");
22 </script>
23 </body>