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

Side by Side Diff: LayoutTests/virtual/softwarecompositing/layer-creation/fixed-position-change-out-of-view-in-view-expected.txt

Issue 473473003: Remove virtual/softwarecompositing suite (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 Layer tree when the fixed elements are out-of-view (should have just a root laye r):
2 {
3 "bounds": [785, 4016],
4 "children": [
5 {
6 "bounds": [785, 4016],
7 "contentsOpaque": true,
8 "drawsContent": true,
9 "children": [
10 {
11 "position": [100, -100],
12 "bounds": [10, 10],
13 "contentsOpaque": true,
14 "drawsContent": true,
15 "backgroundColor": "#C0C0C0"
16 },
17 {
18 "position": [100, 100],
19 "bounds": [10, 0],
20 "contentsOpaque": true,
21 "drawsContent": true,
22 "backgroundColor": "#C0C0C0"
23 }
24 ]
25 }
26 ]
27 }
28 Layer tree when the fixed elements are in-view (both fixed elements should have layers):
29 {
30 "bounds": [785, 4016],
31 "children": [
32 {
33 "bounds": [785, 4016],
34 "contentsOpaque": true,
35 "drawsContent": true,
36 "children": [
37 {
38 "position": [100, 50],
39 "bounds": [10, 10],
40 "contentsOpaque": true,
41 "drawsContent": true,
42 "backgroundColor": "#C0C0C0"
43 },
44 {
45 "position": [100, 100],
46 "bounds": [10, 10],
47 "contentsOpaque": true,
48 "drawsContent": true,
49 "backgroundColor": "#C0C0C0"
50 }
51 ]
52 }
53 ]
54 }
55 Layer tree when the fixed elements are out-of-view again (should have just a roo t layer):
56 {
57 "bounds": [785, 4016],
58 "children": [
59 {
60 "bounds": [785, 4016],
61 "contentsOpaque": true,
62 "drawsContent": true,
63 "children": [
64 {
65 "position": [100, -100],
66 "bounds": [10, 10],
67 "contentsOpaque": true,
68 "drawsContent": true,
69 "backgroundColor": "#C0C0C0"
70 },
71 {
72 "position": [100, 100],
73 "bounds": [10, 0],
74 "contentsOpaque": true,
75 "drawsContent": true,
76 "backgroundColor": "#C0C0C0"
77 }
78 ]
79 }
80 ]
81 }
82
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698