Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<meta charset="utf-8">
<title>Select element rendering after adoption</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="author" href="https://mozilla.com" title="Mozilla">
<link rel=match href="select-adopted-ref.html">
<select>
<option>ABC</option>
<option>DEF</option>
</select>
<iframe></iframe>
<script>
let select = document.querySelector("select");
let iframe = document.querySelector("iframe");
iframe.contentWindow.document.body.appendChild(select);
</script>