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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/composited-overflow-with-borderbox-background-expected.txt

Issue 2511893002: Paint solid color background into both scrolling contents layer and graphics layer. (Closed)
Patch Set: Add Mac rebaselines. Created 4 years 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
(Empty)
1 {
2 "layers": [
3 {
4 "name": "LayoutView #document",
5 "bounds": [800, 600],
6 "contentsOpaque": true,
7 "drawsContent": true
8 },
9 {
10 "name": "LayoutBlockFlow DIV id='scroller'",
11 "position": [8, 8],
12 "bounds": [220, 220],
13 "contentsOpaque": true,
14 "shouldFlattenTransform": false,
15 "drawsContent": true,
16 "backgroundColor": "#008000",
17 "paintInvalidations": [
18 {
19 "object": "LayoutBlockFlow DIV id='scroller'",
20 "rect": [0, 0, 220, 220],
21 "reason": "style change"
22 }
23 ]
24 },
25 {
26 "name": "Scrolling Layer",
27 "position": [10, 10],
28 "bounds": [185, 185],
29 "shouldFlattenTransform": false
30 },
31 {
32 "name": "Scrolling Contents Layer",
33 "bounds": [185, 300],
34 "contentsOpaque": true,
35 "drawsContent": true,
36 "paintInvalidations": [
37 {
38 "object": "LayoutBlockFlow DIV id='scroller'",
39 "rect": [0, 0, 185, 300],
40 "reason": "background on scrolling contents layer"
41 }
42 ]
43 },
44 {
45 "name": "Overflow Controls Host Layer",
46 "bounds": [220, 220]
47 },
48 {
49 "name": "Horizontal Scrollbar Layer",
50 "position": [10, 195],
51 "bounds": [185, 15]
52 },
53 {
54 "name": "Vertical Scrollbar Layer",
55 "position": [195, 10],
56 "bounds": [15, 185]
57 },
58 {
59 "name": "Scroll Corner Layer",
60 "position": [195, 195],
61 "bounds": [15, 15],
62 "drawsContent": true
63 }
64 ],
65 "objectPaintInvalidations": [
66 {
67 "object": "Scrolling Contents Layer",
68 "reason": "background on scrolling contents layer"
69 },
70 {
71 "object": "LayoutBlockFlow DIV id='scroller'",
72 "reason": "style change"
73 }
74 ]
75 }
76
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698