Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<meta charset="utf-8">
<title>option element with br child</title>
<link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me">
<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>