grid-flex-item-003.html (560B)
1 <!doctype html> 2 <link rel="help" href="https://crbug.com/1077524"> 3 <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> 4 <meta name="assert" content="Grid item in 0-height grid flex-item doesn't get the flexbox's height." /> 5 6 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 7 <div style="background: green; display: flex; flex-direction: column; width: 100px; height: 100px;"> 8 <div style="background: blue; display: grid; grid-template-rows: auto;"> 9 <div style="background: red;"></div> 10 </div> 11 </div>