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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/new-stacking-context-expected.txt

Issue 2738303002: Eagerly invalidate when a layer becomes stacking context (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
(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",
11 "position": [8, 8],
12 "bounds": [100, 100],
13 "shouldFlattenTransform": false,
14 "drawsContent": true
15 },
16 {
17 "name": "Scrolling Layer",
18 "bounds": [100, 100],
19 "shouldFlattenTransform": false
20 },
21 {
22 "name": "Scrolling Contents Layer",
23 "bounds": [200, 200],
24 "drawsContent": true,
25 "paintInvalidations": [
26 {
27 "object": "LayoutBlockFlow DIV id='target'",
28 "rect": [0, 0, 200, 200],
29 "reason": "subtree"
30 }
31 ]
32 },
33 {
34 "name": "Overflow Controls Host Layer",
35 "bounds": [100, 100]
36 },
37 {
38 "name": "Horizontal Scrollbar Layer",
39 "position": [0, 100],
40 "bounds": [100, 0],
41 "drawsContent": true
42 },
43 {
44 "name": "Vertical Scrollbar Layer",
45 "position": [100, 0],
46 "bounds": [0, 100],
47 "drawsContent": true
48 },
49 {
50 "name": "LayoutBlockFlow DIV id='target'",
51 "position": [8, 8],
52 "bounds": [200, 200],
53 "opacity": 0.5,
54 "contentsOpaque": true,
55 "drawsContent": true,
56 "backgroundColor": "#008000",
57 "paintInvalidations": [
58 {
59 "object": "LayoutBlockFlow DIV id='target'",
60 "rect": [0, 0, 200, 200],
61 "reason": "full"
62 },
63 {
64 "object": "LayoutBlockFlow DIV id='target'",
65 "rect": [0, 0, 200, 200],
66 "reason": "subtree"
67 }
68 ]
69 }
70 ],
71 "objectPaintInvalidations": [
72 {
73 "object": "LayoutBlockFlow DIV id='target'",
74 "reason": "subtree"
75 },
76 {
77 "object": "LayoutBlockFlow DIV id='target'",
78 "reason": "subtree"
79 },
80 {
81 "object": "LayoutBlockFlow DIV id='target'",
82 "reason": "subtree"
83 }
84 ]
85 }
86
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698