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

Side by Side Diff: third_party/WebKit/LayoutTests/platform/win/paint/invalidation/selection/invalidation-rect-includes-newline-expected.txt

Issue 2442383002: Simplify ObjectPaintInvalidatorW/C::computePaintInvalidationReason() (Closed)
Patch Set: rebaseline-cl Created 4 years, 1 month 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": "LayoutText #text", 10 "object": "LayoutText #text",
11 "rect": [8, 8, 48, 32], 11 "rect": [8, 8, 48, 32],
12 "reason": "full" 12 "reason": "bounds change"
13 },
14 {
15 "object": "LayoutText #text",
16 "rect": [8, 8, 48, 32],
17 "reason": "selection"
18 } 13 }
19 ] 14 ]
20 } 15 }
21 ], 16 ],
22 "objectPaintInvalidations": [ 17 "objectPaintInvalidations": [
23 { 18 {
24 "object": "LayoutBlockFlow HTML", 19 "object": "LayoutBlockFlow HTML",
25 "reason": "selection" 20 "reason": "selection"
26 }, 21 },
27 { 22 {
28 "object": "LayoutBlockFlow BODY", 23 "object": "LayoutBlockFlow BODY",
29 "reason": "selection" 24 "reason": "selection"
30 }, 25 },
31 { 26 {
32 "object": "LayoutBlockFlow DIV id='container'", 27 "object": "LayoutBlockFlow DIV id='container'",
33 "reason": "selection" 28 "reason": "selection"
34 }, 29 },
35 { 30 {
36 "object": "LayoutText #text", 31 "object": "LayoutText #text",
37 "reason": "selection" 32 "reason": "bounds change"
38 }, 33 },
39 { 34 {
40 "object": "InlineTextBox 'xx'", 35 "object": "InlineTextBox 'xx'",
41 "reason": "selection" 36 "reason": "bounds change"
42 }, 37 },
43 { 38 {
44 "object": "InlineTextBox 'y'", 39 "object": "InlineTextBox 'y'",
45 "reason": "selection" 40 "reason": "bounds change"
46 },
47 {
48 "object": "LayoutText #text",
49 "reason": "full"
50 },
51 {
52 "object": "InlineTextBox 'xx'",
53 "reason": "full"
54 },
55 {
56 "object": "InlineTextBox 'y'",
57 "reason": "full"
58 } 41 }
59 ] 42 ]
60 } 43 }
61 44
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698