chromium/third_party/blink/web_tests/css2.1/20110323/table-columns-example-001-expected.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>CSS Test: WebKit Reference Result</title>
        <style type="text/css">
            .t1
            {
                border-collapse: collapse;
                border-style: hidden;
            }
            .col1
            {
                border-style: none solid;
            }
            .col2
            {
                border-style: none none none solid;
                border-width: 1px;
                border-color: gray;
            }
            td
            {
                height: 2em;
                width: 2em;
            }
        </style>
    </head>
    <body>
        <table class="t1">
            <col class="col1">
            <col class="col1">
            <col class="col1">
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
        </table>
        <p>Test passes if the vertical lines above this text match the vertical lines below this text (differing only in boldness).</p>
        <table class="t1">
            <col class="col2">
            <col class="col2">
            <col class="col2">
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
        </table>
    </body>
</html>