Status: FAIL | Duration: 19ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-grid/subgrid/grid-gap-normal-001.html
<!DOCTYPE HTML> <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <html><head> <meta charset="utf-8"> <title>CSS Grid Test: subgrid grid-gap:normal</title> <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> <link rel="help" href="https://drafts.csswg.org/css-grid-2"> <link rel="match" href="grid-gap-normal-001-ref.html"> <style> html,body { color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0; } .wrapper { display: grid; gap: 10px; grid-template-columns: 150px 100px 150px 100px; grid-template-rows: repeat(3,minmax(100px,auto)); background-color: #fff; color: #444; } .box { background-color: #444; color: #fff; padding: 20px; } .box .box { background-color: #ccc; color: #444; } .a { grid-column: 1 / 3; } .b { grid-column: 4 ; } .c { grid-column: 1; grid-row: 2 / 4; } .d { grid-column: 2 / 5; grid-row: 2 / 4; display: grid; grid-template-columns: subgrid; grid-template-rows: subgrid; } </style> </head> <body> <div class="wrapper"> <div class="box a">A</div> <div class="box b">B</div> <div class="box c">C</div> <div class="box d"> <div class="box e">E</div> <div class="box f">F</div> <div class="box g">G</div> <div class="box h">H</div> <div class="box i">I</div> </div> </div> </body> </html>
/css/css-grid/subgrid/grid-gap-normal-001-ref.html
<!DOCTYPE HTML> <!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <html><head> <meta charset="utf-8"> <title>Reference: subgrid grid-gap:normal</title> <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> <style> html,body { color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0; } .wrapper { display: grid; gap: 10px; grid-template-columns: 150px 100px 150px 100px; grid-template-rows: repeat(3,minmax(100px,auto)); background-color: #fff; color: #444; } .box { background-color: #444; color: #fff; padding: 20px; } .box .box { background-color: #ccc; color: #444; } .a { grid-column: 1 / 3; } .b { grid-column: 4 ; } .c { grid-column: 1; grid-row: 2 / 4; } .d { grid-column: 2 / 5; grid-row: 2 / 4; display: grid; gap: 10px; grid-template-columns: 80px 150px 80px; grid-template-rows: 80px 80px; } </style> </head> <body> <div class="wrapper"> <div class="box a">A</div> <div class="box b">B</div> <div class="box c">C</div> <div class="box d"> <div class="box e">E</div> <div class="box f">F</div> <div class="box g">G</div> <div class="box h">H</div> <div class="box i">I</div> </div> </div> </body> </html>