ladybird/Tests/LibWeb/Ref/input/options-set-index.html
2025-03-20 11:50:49 +01:00

8 lines
253 B
HTML

<!DOCTYPE html>
<link rel="match" href="../expected/options-set-index.html" />
<select id="select"></select>
<script>
const select = document.getElementById("select");
select.options[0] = new Option("text");
select.value = "text";
</script>