Oreon-Lime-R2/mingw-wine-gecko/wine-gecko-2.47.4-src/wine-gecko-2.47.4/layout/reftests/bugs/391994-1.html

13 lines
274 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
var sel = document.createElement("select");
sel.appendChild(new Option(1));
var opt = new Option(2);
opt.setAttribute("selected", "selected");
sel.appendChild(opt);
document.body.appendChild(sel);
</script>
</body>
</html>