Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/grid-definition/flex-item-grid-container-auto-repeat-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<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: 200%;
grid-template-columns: repeat(auto-fill, 50px);
background: green;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div class="flex">
<div class="item-flex-none"></div>
<div class="item-grid-container"></div>
</div>