Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/forms/the-select-element/select-root-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<script>
document.addEventListener("DOMContentLoaded", () => {
const a = document.documentElement;
a.replaceWith(document.createElement("select"))
})
</script>