Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-multicol/column-rule-002.html
<!DOCTYPE html> <title>Column rule paint order test</title> <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-multicol-1/#column-gaps-and-rules"> <link rel="match" href="column-rule-002-ref.html"> <p>There should be four squares below, on a yellow background.</p> <div style="columns:3; column-gap:30px; column-rule:30px solid; column-fill:auto; width:180px; height:100px; background:yellow;"> <div style="height:250px;"> <div style="height:30px;"></div> <div style="width:180px; height:40px; background:yellow;"></div> </div> </div>
/css/css-multicol/column-rule-002-ref.html
<!DOCTYPE html> <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> <style> .square { position: absolute; width: 30px; height: 30px; background: black; } .left { margin-left: 40px; } .right { margin-left: 110px; } .bottom { margin-top: 70px; } </style> <p>There should be four squares below, on a yellow background.</p> <div class="square top left"></div> <div class="square top right"></div> <div class="square bottom left"></div> <div class="square bottom right"></div> <div style="width:180px; height:100px; background:yellow;"></div>