grid-item-placement-crash.html (600B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1399336"> 3 <body> 4 <div style="width: 2000px; height: 2000px;"> 5 <div style="columns: 2; border: 1px solid black;"> 6 <div style="height: 50px; width: 550px; float: right;">Text</div> 7 <div style="display: grid; grid-template-columns: repeat(auto-fill,250px);"> 8 <div style="width: 250px;"> 9 <div style="height: 550px;"></div> 10 </div> 11 <div style="width: 250px;"> 12 <div style="height: 550px;"></div> 13 </div> 14 </div> 15 </div> 16 </div> 17 </body>