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>
6 <option selected
>FAIL
</option>
7 <option selected
>PASS
</option>
9 <div id=paymentoptions
></div>
11 if (window
.testRunner
)
12 testRunner
.dumpAsText();
14 document
.getElementById("paymentoptions").innerHTML
=
16 '<option selected>FAIL</option>' +
17 '<option selected>PASS</option>' +
20 if (window
.testRunner
&& document
.getElementsByTagName("select")[0].value
== "PASS" && document
.getElementsByTagName("select")[1].value
== "PASS")
21 document
.write("PASS");