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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/should-not-repaint-composited-descendants-expected.txt

Issue 2707063003: Don't invalidate rect if it's covered by fully invalidated parent's visual rect (Closed)
Patch Set: - Created 3 years, 9 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
1 { 1 {
2 "layers": [ 2 "layers": [
3 { 3 {
4 "name": "LayoutView #document", 4 "name": "LayoutView #document",
5 "bounds": [800, 600], 5 "bounds": [800, 600],
6 "contentsOpaque": true, 6 "contentsOpaque": true,
7 "drawsContent": true 7 "drawsContent": true
8 }, 8 },
9 { 9 {
10 "name": "LayoutBlockFlow (positioned) DIV id='composited-box'", 10 "name": "LayoutBlockFlow (positioned) DIV id='composited-box'",
11 "position": [38, 38], 11 "position": [38, 38],
12 "bounds": [20, 70], 12 "bounds": [20, 70],
13 "contentsOpaque": true, 13 "contentsOpaque": true,
14 "drawsContent": true, 14 "drawsContent": true,
15 "backfaceVisibility": "hidden", 15 "backfaceVisibility": "hidden",
16 "backgroundColor": "#008000", 16 "backgroundColor": "#008000",
17 "paintInvalidations": [ 17 "paintInvalidations": [
18 { 18 {
19 "object": "LayoutBlockFlow (positioned) DIV id='composited-box'", 19 "object": "LayoutBlockFlow (positioned) DIV id='composited-box'",
20 "rect": [-30, -30, 50, 100], 20 "rect": [-30, -30, 50, 100],
21 "reason": "subtree" 21 "reason": "subtree"
22 }, 22 },
23 { 23 {
24 "object": "LayoutBlockFlow DIV class='child'",
25 "rect": [-30, -30, 50, 50],
26 "reason": "subtree"
27 },
28 {
29 "object": "LayoutBlockFlow (positioned) DIV id='composited-box'", 24 "object": "LayoutBlockFlow (positioned) DIV id='composited-box'",
30 "rect": [0, 0, 10, 60], 25 "rect": [0, 0, 10, 60],
31 "reason": "full" 26 "reason": "full"
32 } 27 }
33 ] 28 ]
34 }, 29 },
35 { 30 {
36 "name": "Child Containment Layer", 31 "name": "Child Containment Layer",
37 "bounds": [90, 90] 32 "bounds": [90, 90]
38 }, 33 },
(...skipping 12 matching lines...) Expand all
51 "object": "LayoutBlockFlow (positioned) DIV id='composited-box'", 46 "object": "LayoutBlockFlow (positioned) DIV id='composited-box'",
52 "reason": "subtree" 47 "reason": "subtree"
53 }, 48 },
54 { 49 {
55 "object": "LayoutBlockFlow DIV class='child'", 50 "object": "LayoutBlockFlow DIV class='child'",
56 "reason": "subtree" 51 "reason": "subtree"
57 } 52 }
58 ] 53 ]
59 } 54 }
60 55
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698