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

Side by Side Diff: third_party/WebKit/LayoutTests/platform/linux/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: Rebaseline on Linux 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 }, 8 },
9 { 9 {
10 "name": "LayoutTextControl INPUT id='root'", 10 "name": "LayoutTextControl INPUT id='root'",
11 "position": [7, 7], 11 "position": [7, 7],
12 "bounds": [66, 24], 12 "bounds": [66, 24],
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, 66, 24], 18 "rect": [0, 0, 66, 24],
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, 64, 22], 23 "rect": [0, 0, 64, 22],
24 "reason": "full" 24 "reason": "full"
25 }, 25 },
26 { 26 {
27 "object": "LayoutBlockFlow DIV id='inner-editor'", 27 "object": "LayoutBlockFlow DIV id='inner-editor'",
28 "rect": [3, 4, 60, 16], 28 "rect": [3, 4, 60, 16],
29 "reason": "subtree" 29 "reason": "subtree"
30 },
31 {
32 "object": "LayoutText #text",
33 "rect": [3, 4, 60, 16],
34 "reason": "subtree"
35 } 30 }
36 ] 31 ]
37 } 32 }
38 ], 33 ],
39 "objectPaintInvalidations": [ 34 "objectPaintInvalidations": [
40 { 35 {
41 "object": "LayoutTextControl INPUT id='root'", 36 "object": "LayoutTextControl INPUT id='root'",
42 "reason": "subtree" 37 "reason": "subtree"
43 }, 38 },
44 { 39 {
(...skipping 16 matching lines...) Expand all
61 "object": "LayoutText #text", 56 "object": "LayoutText #text",
62 "reason": "subtree" 57 "reason": "subtree"
63 }, 58 },
64 { 59 {
65 "object": "InlineTextBox 'test test test'", 60 "object": "InlineTextBox 'test test test'",
66 "reason": "subtree" 61 "reason": "subtree"
67 } 62 }
68 ] 63 ]
69 } 64 }
70 65
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698