You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<metaname="assert" content="Test checks that items which become frozen due to a max-size violation use that clamped size in later steps to determine free space, so other children can grow to fill the space freed up by fixing the violation.">
<style>
.container {
background-color: red;
display: flex;
height:100px;
width:100px;
}
.frozen-child {
flex-grow:1;
max-width:0px;
background: red;
}
.non-frozen-child {
flex-grow:1;
background: green;
}
</style>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>