mirror of
https://github.com/servo/servo
synced 2026-05-12 01:46:28 +02:00
15 lines
507 B
HTML
15 lines
507 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>OPTION's label attribute in SELECT -- Empty label uses Element text</title>
|
|
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-select-element-2">
|
|
<link rel="match" href="option-label-ref.html">
|
|
<meta name="assert" content="An option element is expected to be rendered by displaying the element's label.">
|
|
|
|
<select>
|
|
<option label>Label Text</option>
|
|
</select>
|
|
<br/>
|
|
<select size="4">
|
|
<option label>Label Text</option>
|
|
</select>
|