Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-multicol/column-balancing-with-overflow-auto-crash.html - WPT Dashboard Interop Dashboard
<!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>