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

Side by Side Diff: LayoutTests/virtual/softwarecompositing/layer-creation/overlap-transformed-3d-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 Before:
2 {
3 "bounds": [800, 600],
4 "children": [
5 {
6 "bounds": [800, 600],
7 "contentsOpaque": true,
8 "drawsContent": true,
9 "children": [
10 {
11 "position": [108, 108],
12 "bounds": [100, 100],
13 "contentsOpaque": true,
14 "drawsContent": true,
15 "backgroundColor": "#008000",
16 "transform": [
17 [1, 0, 0, 0],
18 [0, 1, 0, 0],
19 [0, 0, 1, 0],
20 [0, 0, -1, 1]
21 ]
22 }
23 ]
24 }
25 ]
26 }
27
28 After:
29 {
30 "bounds": [800, 600],
31 "children": [
32 {
33 "bounds": [800, 600],
34 "contentsOpaque": true,
35 "drawsContent": true,
36 "children": [
37 {
38 "children": [
39 {
40 "position": [108, 108],
41 "bounds": [100, 100],
42 "contentsOpaque": true,
43 "drawsContent": true,
44 "backgroundColor": "#008000",
45 "transform": [
46 [0.707106781186548, 0.707106781186548, 0, 0],
47 [-0.707106781186548, 0.707106781186548, 0, 0],
48 [0, 0, 1, 0],
49 [0, 0, -1, 1]
50 ]
51 },
52 {
53 "position": [8, 8],
54 "bounds": [300, 300],
55 "drawsContent": true
56 }
57 ]
58 }
59 ]
60 }
61 ]
62 }
63
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698