mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
8 lines
253 B
HTML
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>
|