Newer
Older
minerva / Tests / LibWeb / Ref / options-set-index.html
@minerva minerva on 13 Jul 235 bytes Initial commit
<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>