chromium/third_party/blink/web_tests/fragmentation/avoid-break-inside-first-child.html

<!DOCTYPE html>
<script src="../resources/check-layout.js"></script>
<p>There should be a smiley below.</p>
<div id="multicol" style="position:relative; columns:1; column-fill:auto; height:200px; overflow:hidden;">
    <div style="margin-top:100px; height:400px; break-inside:avoid;">
        <div data-offset-y="100" data-offset-x="0">
            :-)
        </div>
    </div>
</div>
<script>
    checkLayout("#multicol");
</script>