option-empty-label.html (507B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>OPTION's label attribute in SELECT -- Empty label uses Element text</title> 4 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#the-select-element-2"> 5 <link rel="match" href="option-label-ref.html"> 6 <meta name="assert" content="An option element is expected to be rendered by displaying the element's label."> 7 8 <select> 9 <option label>Label Text</option> 10 </select> 11 <br/> 12 <select size="4"> 13 <option label>Label Text</option> 14 </select>