trisquel-icecat/icecat/testing/web-platform/tests/domparsing/createContextualFragment-in-detached-xml-document-crash.html
2025-10-06 02:35:48 -06:00

14 lines
352 B
HTML

<!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>