blob: 189c23d5b54227d115e4a7367ce920410a049891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# In this test we ensure that "backface-visiblity" property
# is not inherited, and the red rect rotated by 180 degrees
# is still rendered.
---
root:
items:
- type: stacking-context
items:
- type: stacking-context
transform-style: preserve-3d
backface-visible: false
items:
- type: stacking-context
transform: rotate-y(180)
transform-origin: 50 50
items:
- type: stacking-context
items:
- type: rect
color: red
bounds: 0 0 100 100
|