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

Side by Side Diff: LayoutTests/paint/invalidation/fixed-position-descendant-paint-offset-indirect-expected.html

Issue 1306993005: Paint invalidation tests of composited-non-stacking-context descendant (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 #container { 3 #container {
4 position: fixed; 4 position: fixed;
5 top: 200px; 5 top: 200px;
6 left: 100px; 6 left: 100px;
7 } 7 }
8 8
9 #block { 9 #block {
10 position: relative; 10 position: relative;
11 width: 100px; 11 width: 100px;
12 height: 100px; 12 height: 100px;
13 top: 50px;
13 background-color: green; 14 background-color: green;
14 } 15 }
15 </style> 16 </style>
16 <div id="container"> 17 <div id="container">
17 <div id="block"></div> 18 <div id="block"></div>
18 </div> 19 </div>
19 This test passes if the green block stays at the same place after repaint. 20 This test passes if the green block stays at the same place after repaint.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698