summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/the-select-element/reset-algorithm-rendering-ref.html
blob: acf192d1d55b7da110d04651093e3ebe0cd48214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<body>

<form>
<select>
<option>Default</option>
<option>Another</option>
</select>

<select>
<option>Another</option>
<option selected>Default</option>
</select>

<select multiple>
<option>option 1</option>
<option>option 2</option>
</select>
</form>

</body>