Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /dom/nodes/replaceWith-document-element-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta name="assert" content="Test replaceWith in a cycle">
<link rel="author" title="Euclid Ye" href="mailto:yezhizhenjiakang@gmail.com">
<script>
var oldRoot = document.documentElement;
var newRoot = document.createElement("html");
oldRoot.replaceWith(newRoot);
newRoot.replaceWith(oldRoot);
</script>