Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/the-option-element/option-with-br.html - WPT Dashboard Interop Dashboard
<!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="match" href="option-with-br-ref.html">
<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 id="manipulate-me"></option>
</select>
<script>
"use strict";
const option = document.querySelector("#manipulate-me");
option.appendChild(document.createTextNode("a"));
option.appendChild(document.createElement("br"));
option.appendChild(document.createTextNode("b"));
</script>