Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-break/block-max-height-004.html
<!DOCTYPE html> <html> <title>CSS Test: max-height block fragmentation</title> <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id="> <link rel="help" href="https://drafts.csswg.org/css-break"> <link rel="match" href="block-max-height-004-ref.html"> <style> .multicol { height: 30px; width: 100px; column-width: 30px; column-fill: auto; border: 2px solid orange; } .block { display: block; background: teal; border: 5px solid black; border-top-width: 0; max-height: 40px; } .child { display: block; width: 50%; height: 80px; } img.child { background: salmon; } div.child { background: purple; } </style> <div class="multicol"> <main class="block"> <img src="" class="child"><div class="child"></div> </main> </div> </html>
/css/css-break/block-max-height-004-ref.html
<!DOCTYPE html> <html> <title>CSS Reference: max-height block fragmentation</title> <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> <style> .multicol { height: 30px; width: 100px; column-width: 30px; column-fill: auto; border: 2px solid orange; } .block { display: block; background: teal; border: 5px solid black; border-top-width: 0; height: 40px; } .child { display: block; width: 50%; height: 80px; } img.child { background: salmon; } div.child { background: purple; } </style> <div class="multicol"> <main class="block"> <img src="" class="child"><div class="child"></div> </main> </div> </html>