Status: FAIL | Duration: 8ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-gaps/flex/fragmentation/flex-gap-decorations-fragmentation-016.html
<!DOCTYPE html> <title> CSS Gap Decorations: Fragmented flex container gaps are painted with different sized gaps per line due to content distribution due to align-content space-between and a row gap. </title> <link rel="help" href="https://www.w3.org/TR/css-gaps-1/"> <link rel="match" href="flex-gap-decorations-fragmentation-016-ref.html"> <link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com"> <style> .multi-column { columns: 2; height: 87px; column-width: 140px; width: 290px; gap: 10px; } body { margin: 0px; } #flexbox { width: 140px; background-color: #fff; display: flex; flex-wrap: wrap; row-rule: 5px solid gold; height: 180px; align-content: space-between; row-gap: 20px; } .item { width: 70px; height: 50px; background-color: #007bff; color: white; display: flex; } </style> <div class="multi-column"> <div id="flexbox"> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> </div> </div>
/css/css-gaps/flex/fragmentation/flex-gap-decorations-fragmentation-016-ref.html
<!DOCTYPE html> <link rel="help" href="https://www.w3.org/TR/css-gaps-1/"> <link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com"> <style> .multi-column { columns: 2; height: 87px; column-width: 140px; width: 290px; gap: 10px; } body { margin: 0px; } #flexbox { width: 140px; background-color: #fff; display: flex; flex-wrap: wrap; height: 180px; align-content: space-between; row-gap: 20px; } .item { width: 70px; height: 50px; background-color: #007bff; color: white; display: flex; } .rule { position: absolute; top: 57.5px; height: 5px; background: gold; width: 140px; } </style> <div class="rule"></div> <div class="rule" style="left: 150px; top: 40.5px;"></div> <div class="multi-column"> <div id="flexbox"> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> </div> </div>