mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
We were updating the IDL values, but the rendered text would remain on the previously selected value.
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>
|