Status: PASS | Duration: 2ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi
/css/css-multicol/column-balancing-with-overflow-auto-crash.html
<!DOCTYPE html> <link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1240384"> <style> #multicol { column-count: 2; column-gap: 5px; width: 200px; } #container { position: relative; box-sizing: border-box; width: 50px; overflow: auto; } #abs { position: absolute; width: 20px; height: 200px; } </style> <p>PASS if no crash.</p> <div id="multicol"> <div id="container"> <div id="abs"></div> <div style="height: 100px; width: 30px;"></div> </div> </div>