gecko-dev/testing/web-platform/tests/css/css-flexbox/multiline-column-max-height.html
Antonio Gomes 4fd2ccc3b5 Bug 1626034 [wpt PR 22541] - [css-flexbox]: Migrate multiline-column-overflow.html to WPT, a=testonly
Automatic update from web-platform-tests
[css-flexbox]: Migrate multiline-column-overflow.html to WPT

This CL moves multiline-column-overflow.html from css3/flexbox
to external/wpt/css/css-flexbox/, and renames it to
multiline-column-max-height.html. <link rel> tags are added, as
well as <meta name=assert> and title.

BUG=1063749
R=cbiesinger@chromium.org

Change-Id: Ie22e6abd0d3fc677853fd2b3d0ea8507d257aa62
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2127549
Reviewed-by: Christian Biesinger <cbiesinger@chromium.org>
Reviewed-by: Stephen McGruer <smcgruer@chromium.org>
Commit-Queue: Antonio Gomes <tonikitoo@igalia.com>
Cr-Commit-Position: refs/heads/master@{#755038}

--

wpt-commits: c4fcee2ac9a03e29119c1f64134f25743c843c3b
wpt-pr: 22541
2020-04-06 12:43:40 +00:00

38 lines
1.2 KiB
HTML

<!DOCTYPE html>
<title>CSS Flexbox: wrapping column flexbox with max-height don't overflow.</title>
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-flow-property">
<link rel="match" href="reference/multiline-column-max-height-ref.html">
<meta name="assert" content="This test ensures that the flex line length is limited to max-height in a wrapping column flexbox."/>
<style>
.flex {
display: flex;
flex-flow: column wrap;
max-height: 200px;
background: blue;
color: blue;
}
.item {
flex: 0 0 auto;
line-height: 20px;
}
</style>
There should only be a blue box below, and the word "FAIL" should not be seen.
<div class="flex">
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
<span class="item">FAIL</span>
</div>