Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-writing-modes/crashtests/wm-body-propagation-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Chrome DCHECK failure for non-root <html></title>
<body></body>
<script>
let non_root = document.createElement("html");
document.documentElement.appendChild(non_root);
document.body.offsetTop;
document.body.style.display = "inline";
non_root.style.color = "red";
</script>