mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 18:55:07 +00:00

Previously, a select element's text would initially be empty if the `selected` property was set on one of its options.
5 lines
115 B
HTML
5 lines
115 B
HTML
<!DOCTYPE html>
|
|
<select>
|
|
<option>Option 1</option>
|
|
<option selected="selected">Option 2</option>
|
|
</select>
|