summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/percentage-heights-010.html
blob: 003cc2487ae56d0172c9253be663b5c3dfdf83ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<title>A height: 100% descendant should trigger a relayout when stretching.</title>
<link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#definite-sizes" />
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1043071" />
<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="display: flex; width: 100px;">
  <div style="display: flex; flex-direction: column; flex: 1; min-height: 100px;">
    <div style="flex: 1; background: red;">
      <div style="height: 100%; background-color: green;"></div>
    </div>
  </div>
</div>