summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/intrinsic-size/col-wrap-014.html
blob: 5861d829b5822e236de2288ca7e0f3c1a3716cec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#intrinsic-sizes">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">

<meta name="assert"
  content="The second item contributes 25px width due to max-width, not 75px, even though the available size for the second item is 75px." />

<style>
  .item {
    flex: 0 0 100px;
    min-height: 0px;
  }

</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.

<div
  style="display: flex; flex-flow: column wrap; width: max-content; height: 100px; background: green;">
  <div class="item">
    <div style="width: 75px;"></div>
  </div>
  <div class="item" style="max-width: 25px;">
    <div style="width: 50px;"></div>
  </div>
</div>