input-column-group-container-crash.html (493B)
1 <!doctype html> 2 <title>CSS Container Queries Test: </title> 3 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#container-queries"> 4 <link rel="help" href="https://crbug.com/1282782"> 5 <p>Pass if this test does not crash</p> 6 <span style="column-count: 1"> 7 <span style="display:table-column-group"></span> 8 <input id="inp"> 9 </span> 10 <script> 11 document.body.offsetTop; 12 document.body.style.setProperty("container", "inline-size"); 13 inp.setAttribute("type", "image"); 14 </script>