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

Side by Side Diff: third_party/WebKit/LayoutTests/platform/mac/paint/invalidation/invalidate-caret-in-non-composited-scrolling-container-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": "LayoutTextControl INPUT id='root'", 10 "name": "LayoutTextControl INPUT id='root'",
11 "position": [5, 5], 11 "position": [5, 5],
12 "bounds": [47, 25], 12 "bounds": [47, 25],
13 "drawsContent": true, 13 "drawsContent": true,
14 "backgroundColor": "#FFFFFF", 14 "backgroundColor": "#FFFFFF",
15 "paintInvalidations": [ 15 "paintInvalidations": [
16 { 16 {
17 "object": "LayoutTextControl INPUT id='root'", 17 "object": "LayoutTextControl INPUT id='root'",
18 "rect": [0, 0, 47, 25], 18 "rect": [0, 0, 47, 25],
19 "reason": "subtree" 19 "reason": "subtree"
20 }, 20 },
21 { 21 {
22 "object": "LayoutTextControl INPUT id='root'", 22 "object": "LayoutTextControl INPUT id='root'",
23 "rect": [0, 0, 41, 19], 23 "rect": [0, 0, 41, 19],
24 "reason": "full" 24 "reason": "full"
25 },
26 {
27 "object": "LayoutBlockFlow DIV id='inner-editor'",
28 "rect": [6, 6, 35, 13],
29 "reason": "subtree"
30 },
31 {
32 "object": "LayoutText #text",
33 "rect": [6, 6, 35, 13],
34 "reason": "subtree"
35 } 25 }
36 ] 26 ]
37 } 27 }
38 ], 28 ],
39 "objectPaintInvalidations": [ 29 "objectPaintInvalidations": [
40 { 30 {
41 "object": "LayoutTextControl INPUT id='root'", 31 "object": "LayoutTextControl INPUT id='root'",
42 "reason": "subtree" 32 "reason": "subtree"
43 }, 33 },
44 { 34 {
(...skipping 16 matching lines...) Expand all
61 "object": "LayoutText #text", 51 "object": "LayoutText #text",
62 "reason": "subtree" 52 "reason": "subtree"
63 }, 53 },
64 { 54 {
65 "object": "InlineTextBox 'test test test'", 55 "object": "InlineTextBox 'test test test'",
66 "reason": "subtree" 56 "reason": "subtree"
67 } 57 }
68 ] 58 ]
69 } 59 }
70 60
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698