Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-select-element/customizable-select/select-optgroup-legend-label.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=help href="https://html.spec.whatwg.org/multipage/form-elements.html#concept-optgroup-label">
<link rel=match href="select-optgroup-legend-label-ref.html">
<meta name=assert content="An optgroup's label comes from its first child legend element when present">
<select size="4">
<optgroup label="Animals">
<legend>Foobar</legend>
<option>Lion</option>
</optgroup>
</select>