OLD | NEW |
---|---|
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": "LayoutText #text", | 10 "object": "LayoutTextControl INPUT id='target'", |
11 "rect": [380, 11, 3, 16], | 11 "rect": [360, 7, 26, 24], |
chrishtr
2017/01/31 22:51:03
Is the change of rect because it's now invalidatin
Xianzhu
2017/02/02 23:42:06
This shows a regression about outline invalidation
| |
12 "reason": "invalidate paint rectangle" | 12 "reason": "outline" |
13 }, | 13 }, |
14 { | 14 { |
15 "object": "LayoutText #text", | 15 "object": "LayoutBlockFlow DIV id='inner-editor'", |
16 "rect": [377, 11, 3, 16], | 16 "rect": [380, 10, 3, 18], |
17 "reason": "invalidate paint rectangle" | 17 "reason": "caret" |
18 }, | |
19 { | |
20 "object": "LayoutBlockFlow DIV id='inner-editor'", | |
21 "rect": [377, 10, 3, 18], | |
22 "reason": "caret" | |
18 } | 23 } |
19 ] | 24 ] |
20 } | 25 } |
21 ], | 26 ], |
22 "objectPaintInvalidations": [ | 27 "objectPaintInvalidations": [ |
23 { | 28 { |
24 "object": "Caret", | 29 "object": "LayoutTextControl INPUT id='target'", |
25 "reason": "invalidate paint rectangle" | 30 "reason": "outline" |
chrishtr
2017/01/31 22:51:03
Why this change?
| |
26 }, | 31 }, |
27 { | 32 { |
28 "object": "Caret", | 33 "object": "Caret", |
29 "reason": "invalidate paint rectangle" | 34 "reason": "caret" |
35 }, | |
36 { | |
37 "object": "Caret", | |
38 "reason": "caret" | |
30 } | 39 } |
31 ] | 40 ] |
32 } | 41 } |
33 | 42 |
OLD | NEW |