1
0
Fork 0
firefox/testing/web-platform/tests/css/css-break/column-balancing-with-oofs-crash.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

31 lines
514 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1362550">
<style>
.multicol {
column-count: 2;
width: 200px;
}
.relpos {
position: relative;
}
.abspos {
height: 25%;
position: absolute;
}
</style>
<div class="multicol">
<div class="relpos">
<div class="abspos">
<p>
text
</p>
</div>
</div>
<figure class="relpos">
<div class="abspos">
<p>
text
</p>
</div>
</figure>
</div>