Status: FAIL | Duration: 8ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-gaps/flex/flex-gap-decorations-048.html
<!DOCTYPE html> <title> CSS Gap Decorations: Flex gaps are painted in case where row gap is created by content distribution between lines due to space-around. </title> <link rel="help" href="https://www.w3.org/TR/css-gaps-1/"> <link rel="match" href="flex-gap-decorations-048-ref.html"> <link rel="author" title="Javier Contreras" href="mailto:javiercon@microsoft.com"> <style> body { margin: 0px; } #flexbox { width: 140px; background-color: #fff; display: flex; flex-wrap: wrap; row-rule: 5px solid gold; height: 200px; align-content: space-around; } .item { width: 70px; height: 40px; background-color: #007bff; color: white; display: flex; } </style> <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>
/css/css-gaps/flex/flex-gap-decorations-048-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> body { margin: 0px; } #flexbox { width: 140px; background-color: #fff; display: flex; flex-wrap: wrap; height: 200px; align-content: space-around; } .item { width: 70px; height: 40px; background-color: #007bff; color: white; display: flex; } .rule { position: absolute; height: 5px; background: gold; width: 140px; left: 0px; } </style> <div class="rule" style="top: 64.17px;"></div> <div class="rule" style="top: 130.83px;"></div> <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>