mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 01:31:02 +00:00
9 lines
154 B
HTML
9 lines
154 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<select id="select">
|
||
|
|
<option>Value 0</option>
|
||
|
|
<option>Value 1</option>
|
||
|
|
</select>
|
||
|
|
<script>
|
||
|
|
select.selectedIndex = 1;
|
||
|
|
</script>
|