chromium/third_party/blink/web_tests/fast/table/cell-absolute-child.html

<html>
<head>
</head>
<body>
    <p>
        This tests for regressions against
        <i><a href="https://bugs.webkit.org/show_bug.cgi?id=8081">http://bugzilla.opendarwin.org/show_bug.cgi?id=8081</a>
        REGRESSION: Drop-down menu has gap at top</i>.
    </p>
    <p>
        You should see two identical green squares, 100x100 pixels each, next to each other. 
    </p>
        <table>
                <tr style="height: 50px;">
                    <td colspan="2"></td>
                </tr>
                <tr>
                        <td style="width: 98px; height: 100px; background: green; vertical-align: top;">
                <div style="position: absolute; background: green; width: 98px; height: 98px;">
                </div>
                        </td>
                        <td style="background: green; width: 100px; height: 100px; position: absolute;"></td>
                </tr>
        </table>
</body>
</html>