Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /domparsing/createContextualFragment-in-detached-xml-document-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body>
<iframe id="i" src="resources/dummy-xml.xml"></iframe>
<script>
window.onload = () => {
let i = document.getElementById("i");
var range = i.contentDocument.createRange();
range.setStart(i.contentDocument.firstElementChild, 0);
i.remove();
range.createContextualFragment('<p>Should not crash</p>');
}
</script>
</body>