ladybird/Tests/LibWeb/Ref/options-set-index.html

8 lines
235 B
HTML

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