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-select-element/select-multiple-re-add-option-via-document-fragment.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Test: Move option from select[multiple] into DocumentFragment and back</title>
<link rel="match" href="select-multiple-re-add-option-via-document-fragment-ref.html">
<p>You should see the word PASS below.</p>
<select multiple id="sel"><option id="opt">PASS</option></select>
<script>
document.body.offsetTop;
let rm = opt;
document.createDocumentFragment().appendChild(rm);
sel.appendChild(rm);
</script>