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/documentElement-remove-descendant-query.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<span id="span"></span>
<script>
var span = document.getElementById("span");
document.documentElement.remove();
span.offsetHeight;
</script>