option-with-br-ref.html (664B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>option element with br child</title> 4 <link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me"> 5 <link rel="help" href="https://html.spec.whatwg.org/multipage/#concept-option-label"> 6 <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-option-text"> 7 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-select-element-2"> 8 9 <p>This test passes if the option element displays three options:</p> 10 11 <pre>a 12 b 13 ab</pre> 14 15 <p>Importantly the third option must not be split across two lines.</p> 16 17 <select multiple> 18 <option>a</option> 19 <option>b</option> 20 <option>ab</option> 21 </select>