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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/fixed-under-composited-absolute-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 #indicator {
9 position: absolute;
10 height: 200px;
11 width: 100px;
12 top: 400px;
13 left: 0;
14 background-color: green;
15 }
16 #absolute {
17 position: absolute;
18 top: 2000px;
19 width: 1px;
20 height: 1px;
21 }
22 </style>
23 Tests paint invalidation of fixed element under a composited absolute element on resize after scrolled.
24 Passes if there is a 100x200 green rectangle and no red.
25 <div id="indicator"></div>
26 <div id="absolute"></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698