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 grid container's content size suggestion (min-content size) is 50px, which is contributed by only one repeat column.">
<style>
.flex {
display: flex;
width: 100px;
height: 100px;
}
.item-flex-none {
width: 50px;
flex: none;
background: green;
}
.item-grid-container {
display: grid;
width: 200px;
grid-template-columns: repeat(auto-fill, 50px);
background: green;
}
</style>
<p>Test passes if there is a filled green square.</p>