mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
We were updating the IDL values, but the rendered text would remain on the previously selected value.
8 lines
154 B
HTML
8 lines
154 B
HTML
<!DOCTYPE html>
|
|
<select id="select">
|
|
<option>Value 0</option>
|
|
<option>Value 1</option>
|
|
</select>
|
|
<script>
|
|
select.selectedIndex = 1;
|
|
</script>
|