chromium/third_party/blink/web_tests/paint/invalidation/table/table-cell-collapsed-border-expected.html

<html>
<head>
    <style>
        table { border-collapse: collapse; }
        td { background: silver; width: 100px; height: 100px; }
    </style>
</head>
<body>
    <p>
        Repaint test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=11359">http://bugs.webkit.org/show_bug.cgi?id=11359</a>
        Incomplete repaint of table cell's collapsed border when changing only the cell</i>.
    </p>
    <table>
        <tr>
            <td></td>
            <td style="border-bottom: 4px solid white; border-top: 10px solid white;"></td>
            <td id="t1" style="border-left: 10px solid; border-right: 10px solid; border-color: green"></td>
            <td style="border-bottom: 6px solid white; border-top: 10px solid white;"></td>
        </tr>
        <tr>
            <td style="border-left: 10px solid white; border-right: 4px solid white;"></td>
            <td></td>
            <td></td>
            <td></td>
        </tr>
        <tr>
            <td id="t2" style="border-top: 10px solid; border-bottom: 10px solid; border-color: green"></td>
            <td></td>
            <td id="t3" style="border: 10px solid green;"></td>
            <td></td>
        </tr>
        <tr>
            <td style="border-left: 10px solid white; border-right: 6px solid white;"></td>
            <td></td>
            <td></td>
            <td></td>
        </tr>
    </table>
</body>
</html>