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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/invalidate-caret-in-composited-scrolling-container-expected.txt

Issue 2271883002: Fix paint invalidation and painting for composited-scrolling input elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: none Created 4 years, 3 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
(Empty)
1 {
2 "name": "Content Root Layer",
3 "bounds": [800, 600],
4 "children": [
5 {
6 "name": "LayoutView #document",
7 "bounds": [800, 600],
8 "contentsOpaque": true,
9 "drawsContent": true,
10 "children": [
11 {
12 "name": "LayoutTextControl INPUT id='root'",
13 "position": [7, 7],
14 "bounds": [66, 24],
15 "drawsContent": true,
16 "backgroundColor": "#FFFFFF",
17 "paintInvalidations": [
18 {
19 "object": "LayoutTextControl INPUT id='root'",
20 "rect": [0, 0, 66, 24],
21 "reason": "subtree"
22 },
23 {
24 "object": "LayoutTextControl INPUT id='root'",
25 "rect": [0, 0, 64, 22],
26 "reason": "full"
27 }
28 ],
29 "children": [
30 {
31 "name": "LayoutBlockFlow DIV id='inner-editor'",
32 "position": [3, 4],
33 "bounds": [60, 16],
34 "shouldFlattenTransform": false,
35 "drawsContent": true,
36 "children": [
37 {
38 "name": "Scrolling Layer",
39 "bounds": [60, 16],
40 "shouldFlattenTransform": false,
41 "children": [
42 {
43 "name": "Scrolling Contents Layer",
44 "bounds": [75, 16],
45 "drawsContent": true,
46 "paintInvalidations": [
47 {
48 "object": "LayoutText #text",
49 "rect": [72, -1, 3, 18],
50 "reason": "invalidate paint rectangle"
51 }
52 ]
53 }
54 ]
55 },
56 {
57 "name": "Overflow Controls Host Layer",
58 "bounds": [60, 16],
59 "children": [
60 {
61 "name": "Horizontal Scrollbar Layer",
62 "position": [0, 16],
63 "bounds": [60, 0],
64 "drawsContent": true
65 },
66 {
67 "name": "Vertical Scrollbar Layer",
68 "position": [60, 0],
69 "bounds": [0, 16],
70 "drawsContent": true
71 }
72 ]
73 }
74 ]
75 }
76 ]
77 }
78 ]
79 }
80 ],
81 "objectPaintInvalidations": [
82 {
83 "object": "LayoutTextControl INPUT id='root'",
84 "reason": "subtree"
85 },
86 {
87 "object": "Scrolling Contents Layer",
88 "reason": "invalidate paint rectangle"
89 }
90 ]
91 }
92
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698