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

Side by Side Diff: LayoutTests/paint/invalidation/spv2/fixed-under-composited-absolute-scrolled-expected.html

Issue 1302183007: Convert some text-based-repaint tests for spv2 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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 | Annotate | Revision Log
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