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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/add-table-overpaint-expected.txt

Issue 2707063003: Don't invalidate rect if it's covered by fully invalidated parent's visual rect (Closed)
Patch Set: - Created 3 years, 9 months 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": "LayoutBlockFlow DIV", 10 "object": "LayoutBlockFlow DIV",
11 "rect": [0, 312, 800, 156], 11 "rect": [0, 312, 800, 156],
12 "reason": "layoutObject insertion" 12 "reason": "layoutObject insertion"
13 },
14 {
15 "object": "LayoutTable TABLE",
16 "rect": [0, 312, 156, 156],
17 "reason": "layoutObject insertion"
18 },
19 {
20 "object": "LayoutTableSection TBODY",
21 "rect": [0, 312, 156, 156],
22 "reason": "layoutObject insertion"
23 },
24 {
25 "object": "LayoutTableRow TR",
26 "rect": [0, 314, 156, 152],
27 "reason": "layoutObject insertion"
28 },
29 {
30 "object": "LayoutTableCell TD",
31 "rect": [2, 314, 152, 152],
32 "reason": "layoutObject insertion"
33 } 13 }
34 ] 14 ]
35 } 15 }
36 ], 16 ],
37 "objectPaintInvalidations": [ 17 "objectPaintInvalidations": [
38 { 18 {
39 "object": "LayoutBlockFlow DIV", 19 "object": "LayoutBlockFlow DIV",
40 "reason": "layoutObject insertion" 20 "reason": "layoutObject insertion"
41 }, 21 },
42 { 22 {
43 "object": "LayoutTable TABLE", 23 "object": "LayoutTable TABLE",
44 "reason": "layoutObject insertion" 24 "reason": "layoutObject insertion"
45 }, 25 },
46 { 26 {
47 "object": "LayoutTableSection TBODY", 27 "object": "LayoutTableSection TBODY",
48 "reason": "layoutObject insertion" 28 "reason": "layoutObject insertion"
49 }, 29 },
50 { 30 {
51 "object": "LayoutTableRow TR", 31 "object": "LayoutTableRow TR",
52 "reason": "layoutObject insertion" 32 "reason": "layoutObject insertion"
53 }, 33 },
54 { 34 {
55 "object": "LayoutTableCell TD", 35 "object": "LayoutTableCell TD",
56 "reason": "layoutObject insertion" 36 "reason": "layoutObject insertion"
57 } 37 }
58 ] 38 ]
59 } 39 }
60 40
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698