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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/table/cached-change-col-border-width-expected.txt

Issue 2423513002: Simplify incremental paint invalidation (Closed)
Patch Set: Update test and rebaseline layout tests 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": "LayoutTableCol COL id='col'", 10 "object": "LayoutTableCol COL id='col'",
11 "rect": [8, 8, 113, 104], 11 "rect": [8, 8, 113, 104],
12 "reason": "style change" 12 "reason": "style change"
13 }, 13 },
14 { 14 {
15 "object": "LayoutTable TABLE", 15 "object": "LayoutTable TABLE",
16 "rect": [8, 108, 113, 4], 16 "rect": [8, 108, 113, 4],
17 "reason": "incremental" 17 "reason": "incremental"
18 }, 18 },
19 { 19 {
20 "object": "LayoutTable TABLE",
21 "rect": [8, 110, 113, 2],
22 "reason": "incremental"
23 },
24 {
25 "object": "LayoutTableCell TD", 20 "object": "LayoutTableCell TD",
26 "rect": [8, 59, 60, 53], 21 "rect": [8, 59, 60, 53],
27 "reason": "bounds change" 22 "reason": "bounds change"
28 }, 23 },
29 { 24 {
30 "object": "LayoutTableCell TD", 25 "object": "LayoutTableCell TD",
31 "rect": [8, 8, 60, 53], 26 "rect": [8, 8, 60, 53],
32 "reason": "location change" 27 "reason": "location change"
33 }, 28 },
34 { 29 {
(...skipping 18 matching lines...) Expand all
53 }, 48 },
54 { 49 {
55 "object": "LayoutTableCell TD", 50 "object": "LayoutTableCell TD",
56 "rect": [63, 59, 54, 51], 51 "rect": [63, 59, 54, 51],
57 "reason": "bounds change" 52 "reason": "bounds change"
58 }, 53 },
59 { 54 {
60 "object": "LayoutTable TABLE", 55 "object": "LayoutTable TABLE",
61 "rect": [116, 8, 5, 104], 56 "rect": [116, 8, 5, 104],
62 "reason": "incremental" 57 "reason": "incremental"
63 },
64 {
65 "object": "LayoutTable TABLE",
66 "rect": [117, 8, 4, 104],
67 "reason": "incremental"
68 } 58 }
69 ] 59 ]
70 } 60 }
71 ], 61 ],
72 "objectPaintInvalidations": [ 62 "objectPaintInvalidations": [
73 { 63 {
74 "object": "LayoutTableCell TD", 64 "object": "LayoutTableCell TD",
75 "reason": "style change" 65 "reason": "style change"
76 }, 66 },
77 { 67 {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 "object": "LayoutTableCell TD", 104 "object": "LayoutTableCell TD",
115 "reason": "bounds change" 105 "reason": "bounds change"
116 }, 106 },
117 { 107 {
118 "object": "LayoutTableCell TD", 108 "object": "LayoutTableCell TD",
119 "reason": "bounds change" 109 "reason": "bounds change"
120 } 110 }
121 ] 111 ]
122 } 112 }
123 113
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698