chromium/third_party/blink/web_tests/fragmentation/break-in-second-table-section.html

<!DOCTYPE html>
<style>
    body {
        overflow:scroll; /* A second layout pass might hide bugs. */
        color: black;
        background: white;
    }
</style>
<p>There should be a blue square below.</p>
<div id="multicol" style="position:relative; columns:3; column-gap:0; column-fill:auto; height:99px; line-height:20px; orphans:1; widows:1;">
    <br>
    <br>
    <table cellspacing="0" cellpadding="0">
        <col style="width:20px;">
        <col style="width:20px;">
        <thead>
            <tr>
                <td style="vertical-align:top;"><br><br></td>
                <td style="vertical-align:top;"><br><br></td>
            </tr>
        </thead>
        <tbody>
            <tr data-expected-height="60">
                <td data-expected-height="60" style="vertical-align:top;">
                    <br>
                    <div data-offset-y="20" style="position:relative; background:blue;">
                        <br><br>
                    </div>
                </td>
                <td data-expected-height="60" style="vertical-align:top; background:blue;">
                    <div style="background:white;"><br></div>
                    <div data-offset-y="20" style="position:relative;"></div>
                </td>
            </tr>
        </tbody>
    </table>
</div>
<script src="../resources/check-layout.js"></script>
<script>
    checkLayout("#multicol");
</script>