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

Side by Side Diff: third_party/WebKit/LayoutTests/platform/mac/paint/invalidation/relative-inline-positioned-movement-repaint-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, 10 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 "paintInvalidations": [ 8 "paintInvalidations": [
9 { 9 {
10 "object": "LayoutBlockFlow BODY", 10 "object": "LayoutBlockFlow BODY",
11 "rect": [8, 8, 784, 18], 11 "rect": [8, 8, 784, 18],
12 "reason": "forced by layout" 12 "reason": "forced by layout"
13 } 13 }
14 ] 14 ]
15 }, 15 },
16 { 16 {
17 "name": "LayoutInline (relative positioned) DIV id='block'", 17 "name": "LayoutInline (relative positioned) DIV id='block'",
18 "position": [68, 7], 18 "position": [68, 7],
19 "bounds": [374, 20], 19 "bounds": [374, 20],
20 "drawsContent": true, 20 "drawsContent": true,
21 "backfaceVisibility": "hidden", 21 "backfaceVisibility": "hidden",
22 "paintInvalidations": [ 22 "paintInvalidations": [
23 { 23 {
24 "object": "LayoutInline (relative positioned) DIV id='block'", 24 "object": "LayoutInline (relative positioned) DIV id='block'",
25 "rect": [0, 0, 374, 20], 25 "rect": [0, 0, 374, 20],
26 "reason": "forced by layout" 26 "reason": "forced by layout"
27 },
28 {
29 "object": "LayoutText #text",
30 "rect": [1, 1, 372, 18],
31 "reason": "forced by layout"
32 } 27 }
33 ] 28 ]
34 } 29 }
35 ], 30 ],
36 "objectPaintInvalidations": [ 31 "objectPaintInvalidations": [
37 { 32 {
38 "object": "LayoutBlockFlow BODY", 33 "object": "LayoutBlockFlow BODY",
39 "reason": "forced by layout" 34 "reason": "forced by layout"
40 }, 35 },
41 { 36 {
(...skipping 12 matching lines...) Expand all
54 "object": "LayoutText #text", 49 "object": "LayoutText #text",
55 "reason": "forced by layout" 50 "reason": "forced by layout"
56 }, 51 },
57 { 52 {
58 "object": "InlineTextBox 'When this layer moves it shouldn't generate a re paint rect.'", 53 "object": "InlineTextBox 'When this layer moves it shouldn't generate a re paint rect.'",
59 "reason": "forced by layout" 54 "reason": "forced by layout"
60 } 55 }
61 ] 56 ]
62 } 57 }
63 58
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698