chromium/third_party/blink/web_tests/fragmentation/cell-taller-than-col-straddles-columns.html

<!DOCTYPE html>
<p>crbug.com/99124 - If a cell is taller than the page then don't attempt to prevent it straddling pages.</p>
<div style="-webkit-columns:3; column-fill:auto; line-height:20px; height:90px; background:yellow;">
    <br>
    <table>
        <tr style="break-inside: avoid;">
            <td>
                <div id="container" data-total-y=1>
                    First column<br>
                    First column<br>
                    First column<br>
                    Second column<br>
                    Second column<br>
                    Second column<br>
                    Second column<br>
                    Third column<br>
                </div>
            </td>
        </tr>
    </table>
</div>
<div id="console"></div>
<script src="../resources/check-layout.js"></script>
<script>
checkLayout("#container", document.getElementById("console"));
</script>