column-balancing-with-overflow-auto-crash.html (538B)
1 <!DOCTYPE html> 2 <link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1240384"> 3 <style> 4 #multicol { 5 column-count: 2; 6 column-gap: 5px; 7 width: 200px; 8 } 9 #container { 10 position: relative; 11 box-sizing: border-box; 12 width: 50px; 13 overflow: auto; 14 } 15 #abs { 16 position: absolute; 17 width: 20px; 18 height: 200px; 19 } 20 </style> 21 <p>PASS if no crash.</p> 22 <div id="multicol"> 23 <div id="container"> 24 <div id="abs"></div> 25 <div style="height: 100px; width: 30px;"></div> 26 </div> 27 </div>