Status: FAIL | Duration: 10ms | 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/line-names/column-line-names-009.html
<!DOCTYPE HTML> <html><head> <meta charset="utf-8"> <title>CSS Grid Lanes Test: subgrid in stacking axis does not inherit line names (columns)</title> <link rel="author" title="Alison Maher" href="mailto:almaher@microsoft.com"> <link rel="help" href="https://drafts.csswg.org/css-grid-3"> <link rel="match" href="column-line-names-009-ref.html"> <style> html,body { color:black; background-color:white; font:12px/1 monospace; padding:0; margin:0; } .grid-lanes > div { background: grey; grid-column:2 / span 2; } x { background: silver; } </style> </head> <body> <div class="grid-lanes" style="display:inline-grid-lanes; grid-template-columns: repeat(4, 30px);"> <div style="display:grid; grid:subgrid [a] [b] [c] / auto;"> <x style="grid-column: a">x</x> </div> </div> </body> </html>
<!DOCTYPE HTML> <html><head> <meta charset="utf-8"> <style> html,body { color:black; background-color:white; font:12px/1 monospace; padding:0; margin:0; } .grid-lanes > div { background: grey; grid-column:2 / span 2; } x { background: silver; } </style> </head> <body> <div class="grid-lanes" style="display:inline-grid-lanes; grid-template-columns: repeat(4, 30px);"> <div style="display:grid; grid:subgrid [a] [b] [c] / auto;"> <x style="grid-column: 3">x</x> </div> </div> </body> </html>