Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / scroll-fixed-squahed-layer-expected.html
blob5e8748333a751f983c44a3a8124cdad236e73b47
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .main {
6 position: absolute;
7 top: 200px;
8 left: 100px;
9 width: 200px;
10 height: 200px;
11 background-color: lightblue;
12 will-change: transform;
15 .squahed {
16 position: absolute;
17 top: 250px;
18 left: 100px;
19 width: 200px;
20 height: 200px;
21 background-color: lightgreen;
23 </style>
24 <script>
25 onload = function() {
26 window.scrollTo(0, 100);
28 </script>
29 </head>
30 <body style="height:2000px">
31 <div class="main"></div>
32 <div class="squahed"></div>
33 </body>
34 </html>