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