mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
27 lines
538 B
HTML
27 lines
538 B
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>
|