Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/flexbox-definite-sizes-006.html - WPT Dashboard Interop Dashboard
<!doctype html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="Item stretches to row flexbox's height when the row flexbox has a definite height but is a child of a column flexbox with an indefinite height." />
<p>Test passes if there is a filled green square.</p>
<div style="display: flex; flex-direction: column;">
<div style="height: 100px; display: flex;">
<div style="width: 100px; background: green;"></div>
</div>
</div>