Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /xml/xml-doc-innerHTML-crash.html - WPT Dashboard Interop Dashboard
<script>
window.addEventListener("DOMContentLoaded", () => {
const doc = new Document()
const a = doc.createElementNS("http://www.w3.org/1999/xhtml", "video")
a.innerHTML = "<input e=\"\">"
})
</script>