Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / invalidations-on-composited-layers-expected.html
blobac9c6a0af5f1fba28433635c9c5b69838f33fb7b
1 <!DOCTYPE html>
3 <!--
4 This test checks that repaint testing works with composited layers.
5 -->
7 <html>
8 <head>
9 <style type="text/css">
10 #parent {
11 width: 400px;
12 height: 400px;
13 background: green;
16 #child {
17 position: relative;
18 left: 50px;
19 top: 50px;
20 width: 75px;
21 height: 75px;
22 background: blue;
25 </style>
26 </head>
27 <body>
28 <div id="parent">
29 <div id="child"></div>
30 </div>
31 </body>
32 </html>