summaryrefslogtreecommitdiffstats
path: root/gfx/wr/wrench/reftests/filters/backdrop-filter-isolation.yaml
blob: 1ab896a234059ad9d5b12e15d19ae148f49d31a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Ensure that stacking context isolation correctly works with backdrop-filter
# (doesn't apply the filter outside the bounds of the isolated stacking context bounds)
root:
  items:
    - type: rect
      bounds: [10, 10, 100, 100]
      color: [0, 128, 0, 1]
    - type: stacking-context
      bounds: [130, 10, 0, 0]
      filters: [identity]
      items:
        - type: rect
          bounds: [0, 0, 100, 100]
          color: [0, 128, 0, 1]
        - type: backdrop-filter
          bounds: [-90, 30, 160, 160]
          filters: [invert(1)]
        - type: rect
          bounds: [-90, 30, 160, 160]
          color: [255, 255, 0, 0.5]