Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-multicol/composited-under-clip-under-multicol.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-multicol"> <link rel="match" href="composited-under-clip-under-multicol-ref.html"> <meta name="assert" content="Test that clip under multicol is correctly applied on composited child"> <style> .columns { columns: 2; column-gap: 20px; width: 220px; height: 100px; } .clip { height: 100px; overflow: hidden; } .composited { will-change: transform; margin-top: -20px; margin-left: -20px; border: 20px solid red; width: 200px; height: 200px; background: green; } </style> <div class="columns"> <div class="clip"> <div class="composited"></div> </div> <div class="clip"></div> </div>
/css/css-multicol/composited-under-clip-under-multicol-ref.html
<!DOCTYPE html> <div style="width: 100px; height: 100px; background: green"></div>