Status: FAIL | Duration: 18ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/grid-lanes/subgrid/grid-subgridded-to-grid-lanes/row-item-percentage-height-001.html
<!DOCTYPE HTML> <html><head> <meta charset="utf-8"> <title>CSS Grid Lanes Test: subgrid item percentage height (row-direction grid-lanes)</title> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <link rel="help" href="https://drafts.csswg.org/css-grid-2"> <link rel="help" href="https://drafts.csswg.org/css-grid-3/#subgrids"> <link rel="match" href="row-item-percentage-height-001-ref.html"> <style type="text/css"> .grid-lanes { display: grid-lanes; grid-template-rows: auto auto; grid-row-gap: 60px; border: 1px solid; padding: 2px; padding-top: 5px; height: 300px; } .subgrid { display: grid; grid-template-rows: subgrid; grid-row: 1 / span 2; grid-row-gap: 40px; background: lightgrey; padding: 10px; padding-top: 5px; } .item { align-self: start; height: 100%; width: 100px; background: grey; } </style> </head> <body> <div class="grid-lanes"> <div class="subgrid"> <div class="item"></div> <div class="item" style="height:100px"></div> </div> </div> </body> </html>
<!DOCTYPE HTML> <html><head> <meta charset="utf-8"> <style type="text/css"> .grid { display: grid; grid-template-rows: auto auto; grid-row-gap: 60px; border: 1px solid; padding: 2px; padding-top: 5px; height: 300px; } .subgrid { display: grid; grid-template-rows: subgrid; grid-row: 1 / span 2; grid-row-gap: 40px; background: lightgrey; padding: 10px; padding-top: 5px; width: min-content; } .item { align-self: start; height: 100%; width: 100px; background: grey; } </style> </head> <body> <div class="grid"> <div class="subgrid"> <div class="item"></div> <div class="item" style="height:100px"></div> </div> </div> </body> </html>