| <!DOCTYPE html> | 
 | <meta charset="utf-8"> | 
 | <title>option element with br child</title> | 
 | <link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me"> | 
 | <link rel="help" href="https://html.spec.whatwg.org/multipage/#concept-option-label"> | 
 | <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-option-text"> | 
 | <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-select-element-2"> | 
 |  | 
 | <p>This test passes if the option element displays three options:</p> | 
 |  | 
 | <pre>a | 
 | b | 
 | ab</pre> | 
 |  | 
 | <p>Importantly the third option must not be split across two lines.</p> | 
 |  | 
 | <select multiple> | 
 |   <option>a</option> | 
 |   <option>b</option> | 
 |   <option>ab</option> | 
 | </select> |