wm-body-propagation-crash.html (363B)
1 <!DOCTYPE html> 2 <title>Chrome DCHECK failure for non-root <html></title> 3 <link rel="help" href="https://crbug.com/1217946"> 4 <body></body> 5 <script> 6 let non_root = document.createElement("html"); 7 document.documentElement.appendChild(non_root); 8 document.body.offsetTop; 9 document.body.style.display = "inline"; 10 non_root.style.color = "red"; 11 </script>