mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
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
38 lines
1.2 KiB
HTML
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>
|