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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/fixed-under-composited-fixed-scrolled-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 <script>
3 onload = function() {
4 window.scrollTo(0, 400);
5 };
6 </script>
7 <style>
8 body {
9 height: 2000px;
10 }
11 #fixed-container {
12 position: fixed;
13 top: 0;
14 left: 0;
15 width: 100%;
16 height: 100%;
17 background-color: green;
18 backface-visibility: hidden;
19 }
20 </style>
21 Tests paint invalidation of fixed elements under a composited fixed element afte r scrolled.
22 Passes if there is only green background.
23 <div id="fixed-container">
24 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698