summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/table-col-background-offset.html
blob: 30868918c9ab2dfb01af321dfc6092d76278eeb8 (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
<html>
<head>
    <title>Tests col background with offset</title>
    <script src="resources/text-based-repaint.js" type="text/javascript"></script>
    <script type="text/javascript">
        function repaintTest()
        {
            document.getElementById("col").style.backgroundColor = "green";
        }
    </script>
</head>
<body onload="runRepaintTest()">
    <style>
        td { width: 100px; height: 100px; }
    </style>
    <div style="height:100px"></div>
    <table>
        <col/>
        <col id="col" style="background-color: red;">
        <tr>
            <td></td>
            <td></td>
        </tr>
    </table>
</body>
</html>