chromium/third_party/blink/web_tests/fast/css/table-rules-attribute-none-with-cell-borders.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>CSS Test: Table columns - HTML table 'rules' none attribute with cell borders</title>
        <meta name="assert" content="The first table should have two vertical lines intersecting two horizontal lines.">
        <style type="text/css">
            table
            {
                border-collapse: collapse;
            }
            td
            {
                border-style: solid;
                height: 2em;
                width: 2em;
            }
        </style>
    </head>
    <body>
        <table>
            <tr>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
            </tr>
        </table>
    </body>
</html>