blob: 49ba8338984ee2666573ba9204f8a06a8dca566b [file] [log] [blame]
<html>
<head>
<title></title>
</head>
<body>
<p>
This is a test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=10472">http://bugs.webkit.org/show_bug.cgi?id=10472</a>
REGRESSION: "add" method of &lt;select> object does not put the &lt;option> object in the correct position</i>.
</p>
<p>
Result: <span id="result">FAIL (test did not run)</span>
</p>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var select = document.createElement("select");
var lastOption = document.createElement("option");
lastOption.text = "last";
select.add(lastOption);
// Access the collection
select.options[0];
var firstOption = document.createElement("option");
firstOption.text = "first";
select.add(firstOption, lastOption);
document.getElementById("result").innerText = select.options[0] == firstOption ? "PASS" : "FAIL";
</script>
</body>
</html>