Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<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>