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-adopted.html - WPT Dashboard Interop Dashboard
<!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=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>