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/dynamic-change-simplified-layout-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
<meta name="assert" content="Tests that certain dynamic changes don't lead to a flex item being sized as zero, instead of its stretched size." />
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div style="display: flex; width: 100px; height: 100px; background: red;">
<div style="contain: layout size; height: 100px; flex: 1; background: green;">
<div id="target"></div>
</div>
</div>
<script>
document.body.offsetTop;
document.getElementById('target').style.width = '1px';
</script>