math-block-container-child-crash.html (536B)
1 <!doctype html> 2 <title>CSS Container Queries Test: Math block container child crash</title> 3 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#size-container"> 4 <link rel="help" href="https://crbug.com/1294268"> 5 <p>Pass if there is no crash.</p> 6 <math id="m" style="display:block math"></math> 7 <script> 8 let div = document.createElement("div"); 9 div.style.containerType = "size"; 10 m.appendChild(div); 11 div.appendChild(document.createElement("span")); 12 document.body.offsetTop; 13 div.style.color = "green"; 14 </script>