summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/paint/row-background-paint-remove-last-cell-ref.html
blob: 57beaedd479c3093f73dc52ed5957f2c576a959f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<style>
tr { background-color: rgb(255, 0, 0); }
td:not(#remove) { background-color: green; }
</style>
<title>CSS Test Reference</title>
<p>Test passes if you see three green cells and no red below.</p>
<table>
    <tr>
        <td>A1</td>
        <td>A2</td>
    </tr>
    <tr>
        <td>B1</td>
    </tr>
</table>
</html>