Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-gaps/grid/grid-gap-decorations-038.html
<!DOCTYPE html> <title> CSS Gap Decorations: grid column gaps are painted with different sized gaps and column-rule-inset 0. </title> <link rel="help" href="https://drafts.csswg.org/css-gaps-1/"> <link rel="match" href="../agnostic/gap-decorations-002-ref.html"> <link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com"> <style> body { margin: 0px; } .grid-container { height: 110px; width: 120px; display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 20px; row-gap: 10px; column-rule-color: blue; column-rule-style: solid; column-rule-width: 20px; column-rule-break: intersection; column-rule-inset: 0; row-rule-color: gold; row-rule-style: solid; row-rule-width: 10px; } .grid-item { background: skyblue; } </style> <div class="grid-container"> <div class="grid-item"></div> <div class="grid-item"></div> <div class="grid-item"></div> <div class="grid-item"></div> </div>
/css/css-gaps/agnostic/gap-decorations-002-ref.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-gaps-1/"> <link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com"> <style> body { margin: 0px; } .container { display: flex; width: 120px; height: 110px; column-gap: 20px; row-gap: 10px; flex-wrap: wrap; } .item { background: skyblue; height: 50px; width: 50px; margin: 0; } .row-gap { position: absolute; top: 50px; background: gold; width: 120px; height: 10px; } .column-gap { position: absolute; left: 50px; background: blue; height: 50px; width: 20px; } </style> <div class="container"> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> </div> <div class="row-gap"></div> <div class="column-gap" style="top: 0px;"></div> <div class="column-gap" style="top: 60px;"></div>