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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/table/cached-change-row-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": "LayoutTableCell TD", 10 "object": "LayoutTableCell TD",
11 "rect": [8, 8, 60, 54], 11 "rect": [8, 8, 60, 54],
12 "reason": "forced by layout" 12 "reason": "forced by layout"
13 }, 13 },
14 { 14 {
15 "object": "LayoutTableCell TD", 15 "object": "LayoutTableCell TD",
16 "rect": [8, 58, 60, 53], 16 "rect": [8, 58, 60, 53],
17 "reason": "location change" 17 "reason": "location change"
18 }, 18 },
19 { 19 {
20 "object": "LayoutTable TABLE", 20 "object": "LayoutTable TABLE",
21 "rect": [8, 109, 60, 2], 21 "rect": [8, 109, 60, 2],
22 "reason": "incremental" 22 "reason": "incremental"
23 }, 23 },
24 { 24 {
25 "object": "LayoutTable TABLE",
26 "rect": [8, 110, 60, 1],
27 "reason": "incremental"
28 },
29 {
30 "object": "LayoutTableRow TR id='row'", 25 "object": "LayoutTableRow TR id='row'",
31 "rect": [10, 10, 56, 50], 26 "rect": [10, 10, 56, 50],
32 "reason": "style change" 27 "reason": "style change"
33 }, 28 },
34 { 29 {
35 "object": "LayoutTableRow TR id='row'", 30 "object": "LayoutTableRow TR id='row'",
36 "rect": [9, 9, 54, 50], 31 "rect": [9, 9, 54, 50],
37 "reason": "style change" 32 "reason": "style change"
38 }, 33 },
39 { 34 {
40 "object": "LayoutTable TABLE", 35 "object": "LayoutTable TABLE",
41 "rect": [62, 8, 6, 103], 36 "rect": [62, 8, 6, 103],
42 "reason": "incremental" 37 "reason": "incremental"
43 },
44 {
45 "object": "LayoutTable TABLE",
46 "rect": [64, 8, 4, 103],
47 "reason": "incremental"
48 } 38 }
49 ] 39 ]
50 } 40 }
51 ], 41 ],
52 "objectPaintInvalidations": [ 42 "objectPaintInvalidations": [
53 { 43 {
54 "object": "LayoutTableCell TD", 44 "object": "LayoutTableCell TD",
55 "reason": "style change" 45 "reason": "style change"
56 }, 46 },
57 { 47 {
(...skipping 16 matching lines...) Expand all
74 "object": "LayoutTableRow TR", 64 "object": "LayoutTableRow TR",
75 "reason": "location change" 65 "reason": "location change"
76 }, 66 },
77 { 67 {
78 "object": "LayoutTableCell TD", 68 "object": "LayoutTableCell TD",
79 "reason": "location change" 69 "reason": "location change"
80 } 70 }
81 ] 71 ]
82 } 72 }
83 73
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698