summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/table-row-outline-paint.html
blob: 3fb6e31d029e0359c794cd047cb6f603c8610094 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE>
<title> Test for bug https://bugs.webkit.org/show_bug.cgi?id=92389</title>
<body>
<style>
    td {
        width: 50px;
        height: 50px;
        border: 1px solid;
    }
    .outline-first {
        outline: 5px solid green;
    }
    .outline-second {
        outline: 5px solid yellow;
    }
</style>
<table>
    <tr class="outline-first">
        <td></td>
        <td></td>
    </tr>
    <tr class="outline-second">
        <td></td>
        <td></td>
    </tr>
</table>
</body>