summaryrefslogtreecommitdiffstats
path: root/gfx/wr/wrench/reftests/split/filter.yaml
blob: 54667c0652e6bcbc3588bd911840578cc2bf5911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This test ensures that an opacity filter forces the flattening of preserve-3D context.
# The innermost rectangle has backface visibility disabled. If the parent stacking context
# is a part of preserve-3D hierarchy, then the item would be backward-facing, thus invisible.
# With the opacity filter, it's no longer a part of the preserve-3D, thus visible.
---
root:
  items:
    - type: stacking-context
      bounds: [0, 0, 200, 200]
      transform-style: preserve-3d
      transform: rotate-y(180)
      items:
        - type: stacking-context
          bounds: [0, 0, 200, 200]
          transform-style: preserve-3d
          filters: [opacity(0.5)]
          items:
            - type: rect
              bounds: [0, 0, 200, 200]
              color: red
              backface-visible: false