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
<meta name="assert" content="This test verifies that the inner div's stretched main size (height) serves as a percentage basis for the img's height. The img can transfer its height through the aspect-ratio to the inline axis when computing its intrinsic inline size contribution. This determines the inner div's main-size (width).">
<style>
.outer {
display: flex;
height: 100px;
}
.inner {
background: red;
}
img {
height: 100%;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>