fune/testing/web-platform/tests/css/css-flexbox/flexbox-safe-overflow-position-004.html
fantasai 811170b627 Bug 1876956 [wpt PR 44248] - [css-flexbox] Fix errors in safe alignment tests., a=testonly
Automatic update from web-platform-tests
[css-flexbox] Fix errors in safe alignment tests.

Safe alignment overflows the end edge, not the flex-end edge.
Also adjust the tests to check both axes.

--

wpt-commits: bdd3b533e8c995e416630422ad64f4c70086b42f
wpt-pr: 44248
2024-01-29 07:40:24 +00:00

41 lines
999 B
HTML

<!DOCTYPE html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#overflow-values">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert"
content="safe flex-start allows for overflow past the end edge, which is bottom/right even in the case of column-reverse" />
<style>
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
.flex {
display: flex;
flex-flow: column-reverse;
width: 90px;
height: 90px;
align-content: safe flex-start;
justify-content: safe flex-start;
}
.item {
flex: 0 0 100px;
width: 100px;
height: 100px;
background: green;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
</p>
<div id="reference-overlapped-red"></div>
<div class="flex">
<div class="item"></div>
</div>