Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/scroll-fixed-squahed-layer-expected.html

Issue 2010243002: Remove paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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;
13 }
14
15 .squahed {
16 position: absolute;
17 top: 250px;
18 left: 100px;
19 width: 200px;
20 height: 200px;
21 background-color: lightgreen;
22 }
23 </style>
24 <script>
25 onload = function() {
26 window.scrollTo(0, 100);
27 }
28 </script>
29 </head>
30 <body style="height:2000px">
31 <div class="main"></div>
32 <div class="squahed"></div>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698