chromium/third_party/blink/web_tests/fast/table/caption-between-column-and-column-group-expected.html

<!DOCTYPE html>
<html>
<head>
<style>
    table {
        border-spacing: 0px;
    }
    th {
        padding: 0px;
        width: 100px;
        height: 100px;
        background-color: green;
    }
</style>
</head>
<body>
<p><a href="http://webkit.org/b/87051">87051</a>: Centralize and clean-up table column iteration</p>
<p>This test passes if you see 3 rectangles below: green - purple - green (in this order, left to right).</p>
<table>
    <tbody>
        <tr>
            <th></th>
            <th style="background-color: purple"></th>
            <th></th>
        </tr>
    </tbody>
</table>
</body>
</html>