tenfourfox/layout/reftests/bugs/240470-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
458 B
HTML

<!DOCTYPE html>
<body>
<html>
<select id="test" size="8">
</select>
<script>
var optgroup = document.createElement("optgroup");
optgroup.setAttribute('label', 'An optgroup');
var option = document.createElement("option");
var optionText = document.createTextNode("An option");
option.appendChild(optionText);
var select = document.getElementById("test");
select.appendChild(optgroup);
optgroup.appendChild(option);
</script>
</body>
</html>