summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/background-generated.html
blob: e64ed34e708f4cea926b7eda5980ee3d68d5734e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<head>
    <script src="resources/text-based-repaint.js" type="text/javascript"></script>
    <script type="text/javascript">
        function repaintTest()
        {
            document.getElementById("target").style.height = "200px";
        }
    </script>
</head>
<body onload="runRepaintTest();">
    <div style="width: 100px;
                padding-top: 100px;
                background-image: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
    ">
        <div id="target" style="height: 100px;"></div>
    </div>
</body>