Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Evaluate the behavior of a grid container as Flexbox item</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="A single-line column flexbox shouldn't shrink-to-fit since its flex item is stretching in the main-axis, honoring the 'align-self: normal (behaves as 'stretch')'. The grid item has a relative inline-size, which should be resolved against the stretched grid's inline-size.">
<style>
body { overflow: hidden; }
.flexbox {
display: flex;
flex-flow: column nowrap;
width: 100px;
height: 100px;
background: red;
}
.grid {
display: grid;
justify-self: start;
align-items: baseline;
}
.gridItem {
background: green;
width: 100%;
height: 100px;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="flexbox">
<div class="grid">
<div class="gridItem"></div>
</div>
</div>