chromium/third_party/blink/web_tests/fragmentation/image-block-as-first-child.html

<!DOCTYPE html>
<style>
    #multicol { position:relative; columns:2; column-fill:auto; column-gap:0; width:100px; height:50px; }
    img { display:block; margin-top:30px; width:40px; height:40px; background:blue; }
</style>
<p>There should be a blue square below.</p>
<div id="multicol">
    <img data-offset-x="50" data-offset-y="0" data-offset-width="50" data-offset-height="50">
</div>
<script src="../resources/check-layout.js"></script>
<script>
    checkLayout("#multicol");
</script>