1
0
Fork 0
firefox/testing/web-platform/tests/css/css-flexbox/flexbox_align-items-stretch-3.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

30 lines
764 B
HTML

<!DOCTYPE html>
<title>flex base size and stretched items</title>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#definite-sizes" title="bullet #1">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Item's stretched size is used for laying out descendants when determining flex base size." />
<style>
x-flexbox {
display: flex;
height: 100px;
}
x-item {
background: green;
writing-mode: vertical-lr;
}
x-item > div {
padding-right: 70%;
width: 30px;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<x-flexbox>
<x-item>
<div></div>
</x-item>
</x-flexbox>