Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / background-generated.html
blobf5f6ce285acd71df3bf73a7c1217db1875177426
1 <!-- Based on fast/repaint/background-generated.html -->
2 <!DOCTYPE HTML>
3 <head>
4 <script src="resources/paint-invalidation-test.js" type="text/javascript"></script>
5 <script type="text/javascript">
6 window.expectedPaintInvalidationObjects = [
7 "LayoutBlockFlow DIV",
8 "LayoutBlockFlow DIV id='target'",
9 ];
10 function paintInvalidationTest()
12 document.getElementById("target").style.height = "200px";
14 </script>
15 </head>
16 <body onload="runPaintInvalidationTest();">
17 <div style="width: 100px;
18 padding-top: 100px;
19 background-image: -webkit-gradient(linear, left top, left bottom, from(red), to(blue));
21 <div id="target" style="height: 100px;"></div>
22 </div>
23 </body>