Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /dom/ranges/Range-insertNode-multiple-document-children-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<head>
</head>
<script>
onload = () => {
document.open();
try {
document.createRange().insertNode(document.createElement("a"));
document.createRange().insertNode(document.createElement("a"));
} finally {
document.close();
}
};
</script>