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

Side by Side Diff: third_party/WebKit/LayoutTests/platform/win/paint/invalidation/selection-partial-invalidation-between-blocks-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": [11, 33, 79, 17], 11 "rect": [11, 33, 79, 17],
12 "reason": "full" 12 "reason": "bounds change"
13 },
14 {
15 "object": "LayoutText #text",
16 "rect": [11, 33, 79, 17],
17 "reason": "selection"
18 }, 13 },
19 { 14 {
20 "object": "LayoutText #text", 15 "object": "LayoutText #text",
21 "rect": [11, 11, 61, 17], 16 "rect": [11, 11, 61, 17],
22 "reason": "full" 17 "reason": "bounds change"
23 },
24 {
25 "object": "LayoutText #text",
26 "rect": [11, 11, 61, 17],
27 "reason": "selection"
28 } 18 }
29 ] 19 ]
30 } 20 }
31 ], 21 ],
32 "objectPaintInvalidations": [ 22 "objectPaintInvalidations": [
33 { 23 {
34 "object": "LayoutBlockFlow HTML", 24 "object": "LayoutBlockFlow HTML",
35 "reason": "selection" 25 "reason": "selection"
36 }, 26 },
37 { 27 {
38 "object": "LayoutBlockFlow BODY", 28 "object": "LayoutBlockFlow BODY",
39 "reason": "selection" 29 "reason": "selection"
40 }, 30 },
41 { 31 {
42 "object": "LayoutTable TABLE", 32 "object": "LayoutTable TABLE",
43 "reason": "selection" 33 "reason": "selection"
44 }, 34 },
45 { 35 {
46 "object": "LayoutTableCell TD id='firstCell'", 36 "object": "LayoutTableCell TD id='firstCell'",
47 "reason": "selection" 37 "reason": "selection"
48 }, 38 },
49 { 39 {
50 "object": "LayoutText #text", 40 "object": "LayoutText #text",
51 "reason": "selection" 41 "reason": "bounds change"
52 }, 42 },
53 { 43 {
54 "object": "InlineTextBox 'First cell'", 44 "object": "InlineTextBox 'First cell'",
55 "reason": "selection" 45 "reason": "bounds change"
56 },
57 {
58 "object": "LayoutText #text",
59 "reason": "full"
60 },
61 {
62 "object": "InlineTextBox 'First cell'",
63 "reason": "full"
64 }, 46 },
65 { 47 {
66 "object": "LayoutTableCell TD id='secondCell'", 48 "object": "LayoutTableCell TD id='secondCell'",
67 "reason": "selection" 49 "reason": "selection"
68 }, 50 },
69 { 51 {
70 "object": "LayoutText #text", 52 "object": "LayoutText #text",
71 "reason": "selection" 53 "reason": "bounds change"
72 }, 54 },
73 { 55 {
74 "object": "InlineTextBox 'Second cell'", 56 "object": "InlineTextBox 'Second cell'",
75 "reason": "selection" 57 "reason": "bounds change"
76 },
77 {
78 "object": "LayoutText #text",
79 "reason": "full"
80 },
81 {
82 "object": "InlineTextBox 'Second cell'",
83 "reason": "full"
84 } 58 }
85 ] 59 ]
86 } 60 }
87 61
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698