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
|
# Ensure that preserve-3d items are correctly batched with transparent siblings.
---
root:
items:
-
type: stacking-context
transform-style: "preserve-3d"
items:
-
type: rect
bounds: [8, 8, 200, 200]
color: blue
-
type: stacking-context
transform-style: "preserve-3d"
items:
-
type: rect
bounds: [8, 208, 200, 200]
color: blue
- type: rect
color: [255, 0, 0, 0.5]
bounds: [8, 408, 200, 200]
-
type: stacking-context
transform-style: "preserve-3d"
items:
-
type: rect
bounds: [8, 408, 200, 200]
color: blue
|