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="This test verifies that the inner div's padding is resolved against the outer div's width when computing its max-content width.">
<style>
.outer {
width:25px;
height:50px;
}
.inner {
box-sizing: border-box;
width: max-content;
height:100%;
padding-top:100%; /* 25px */
background: green;
}
canvas {
height:100%;
}
</style>
<p>Test passes if there is a filled green square.</p>
<divclass="outer">
<divclass="inner">
<!-- display:block on <canvas> exercises a different code path in Firefox. -->