chromium/third_party/blink/web_tests/css2.1/20110323/fixed-table-layout-006-expected.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
    <head>
        <title>CSS Test: Reference Result</title>
        <style type="text/css">
            table
            {
                border-collapse: separate;
                border-spacing: 0;
            }
            td
            {
                height: 100px;
                padding: 0;
                width: 10px;
            }
            #blue
            {
                background: blue;
            }
            #orange
            {
                background: orange;
            }
        </style>
    </head>
    <body>
        <p>Test passes if all of the blue lines below appear to have the same width.</p>
            <table>
                <tr>
                    <td id="blue"></td>
                    <td id="orange"></td>
                    <td id="blue"></td>
                    <td id="orange"></td>
                    <td id="blue"></td>
                    <td id="orange"></td>
                    <td id="blue"></td>
                    <td id="orange"></td>
                    <td id="blue"></td>
                    <td id="orange"></td>
                    <td id="blue"></td>
                    <td id="orange"></td>
                    <td id="blue"></td>
               </tr>
            </table>
    </body>
</html>