tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

clip-corner-overlap.yaml (1607B)


      1 ---
      2 root:
      3  items:
      4    - type: stacking-context
      5      bounds: [0, 0, 1000, 1000]
      6      items:
      7        - type: clip
      8          id: 2
      9          complex:
     10            - rect: [ 50, 50, 200, 200 ]
     11              radius:
     12                top-left: [200, 100]
     13                top-right: [0, 0]
     14                bottom-left: [200, 100]
     15                bottom-right: [0, 0]
     16        - type: rect
     17          bounds: [ 50, 50, 200, 200 ]
     18          color: blue
     19          clip-chain: [2]
     20 
     21        - type: clip
     22          id: 3
     23          complex:
     24            - rect: [ 300, 50, 200, 200 ]
     25              radius:
     26                top-left: [100, 200]
     27                top-right: [100, 200]
     28                bottom-left: [0, 0]
     29                bottom-right: [0, 0]
     30        - type: rect
     31          bounds: [ 300, 50, 200, 200 ]
     32          color: green
     33          clip-chain: [3]
     34 
     35        - type: clip
     36          id: 4
     37          complex:
     38            - rect: [ 50, 300, 200, 200 ]
     39              radius:
     40                top-left: [0, 0]
     41                top-right: [200, 100]
     42                bottom-left: [0, 0]
     43                bottom-right: [200, 100]
     44        - type: rect
     45          bounds: [ 50, 300, 200, 200 ]
     46          color: red
     47          clip-chain: [4]
     48 
     49        - type: clip
     50          id: 5
     51          complex:
     52            - rect: [ 300, 300, 200, 200 ]
     53              radius:
     54                top-left: [0, 0]
     55                top-right: [0, 0]
     56                bottom-left: [100, 200]
     57                bottom-right: [100, 200]
     58        - type: rect
     59          bounds: [ 300, 300, 200, 200 ]
     60          color: yellow
     61          clip-chain: [5]