flex-in-columns-002-crash.html (515B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1276898"> 4 <style> 5 @container (max-width: 250px) { 6 #target { 7 display: flex; 8 } 9 } 10 </style> 11 <div id="ancestor" style="columns:2; column-gap:0; width:600px;"> 12 <div style="container-type:inline-size;"> 13 <div id="target"></div> 14 </div> 15 </div> 16 <script> 17 document.body.offsetTop; 18 ancestor.style.width = "400px"; 19 </script>