auto-height-flex-item-in-multicol-crash.html (417B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://crbug.com/434735271"> 3 <link rel="help" href="https://crbug.com/433011988"> 4 <style> 5 #flex { 6 display: flex; 7 flex-wrap: wrap; 8 height: 200px; 9 align-content: flex-end; 10 gap: 60px; 11 } 12 </style> 13 <div style="width: 100px; height: 100px; columns: 2; column-gap: 0;"> 14 <div id="flex"> 15 <div style="height: auto; width: 20px;"></div> 16 T 17 </div> 18 </div>