Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /dom/nodes/crashtests/childNodes-last_visited-unwrap-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<script>
let div1 = document.createElement("div");
let div2 = document.createElement("div");
div1.appendChild(div2);
div1.childNodes;
div1.insertBefore(div2, div2);
div2.after("");
div2.remove();
</script>