chromium/third_party/blink/web_tests/fast/css/nested-table-with-collapsed-borders.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>This test will assert if a parent table attempts to calculate the collapsed borders of a nested table.</title>
        <style type="text/css">
            #table1
            {
                border-collapse: collapse;
                height: 2in;
                width: 2in;
            }
            #table2
            {
                height: 2in;
                width: 2in;
            }
            td
            {
                border: 5px solid black;
            }
        </style>
    </head>
    <body>
        <table id="table1">
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td>
                    <table id="table2">
                        <tr>
                            <td></td>
                            <td></td>
                            <td></td>
                        </tr>
                    </table>
                </td>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
        </table>
    </body>
</html>