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