inline-multicol-inside-container-crash.html (549B)
1 <!doctype html> 2 <title>CSS Container Queries Test: Inline multicol inside size container - crash</title> 3 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#size-container"> 4 <link rel="help" href="https://crbug.com/829028"> 5 <style> 6 #container { 7 container-type: size; 8 width: 200px; 9 height: 100px; 10 } 11 @container (width <= 200px) { 12 #multicol { 13 column-count: 2; 14 column-gap: 0; 15 } 16 } 17 </style> 18 <p>Test passes if it doesn't crash.</p> 19 <div id="container"> 20 <span id="multicol"><div></div></span> 21 </div>