1
0
Fork 0
firefox/testing/web-platform/tests/css/css-break/overflowing-block-003-ref.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
600 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org/">
<style>
.multicol {
width: 150px;
height: 50px;
columns: 2;
column-gap: 0;
column-fill: auto;
border: 3px solid black;
margin: 10px;
}
.outer {
width: 50px;
height: 100px;
background: green;
}
</style>
<p>This test passes if there are two 50x50 green squares in each black box.</p>
<div class="multicol">
<div class="outer"></div>
</div>
<div class="multicol">
<div class="outer"></div>
</div>