1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
---
root:
items:
- type: stacking-context
bounds: [0, 0, 100, 200]
items:
- type: stacking-context
bounds: [0, 0, 100, 200]
transform: rotate-y(-45) rotate-x(45)
items:
- type: rect
bounds: [0, 0, 50, 100]
color: green
- type: stacking-context
bounds: [0, 0, 100, 200]
transform: rotate-y(45) rotate-x(45)
items:
- type: rect
bounds: [0, 0, 50, 100]
color: red
- type: stacking-context
bounds: [0, 0, 100, 200]
transform: rotate-y(45) rotate-x(45)
items:
- type: rect
bounds: [50, 0, 50, 100]
color: red
- type: stacking-context
bounds: [0, 0, 100, 200]
transform: rotate-y(-45) rotate-x(45)
items:
- type: rect
bounds: [50, 0, 50, 100]
color: green
|