summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/mask-contains-inner-svg-02.svg
blob: 78a5ce004e30d016aff244c2f7a899438915187e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg">
  <defs>
    <mask id="myMask">
      <svg x="25%" overflow="visible">
        <svg x="25%" overflow="visible">
          <polygon fill="white" points="-50 0 50 0 50 100 -50 100"/>
        </svg>
      </svg>
    </mask>
  </defs>
  <rect width="100%" height="100%" fill="lime"/>
  <circle cx="50%" cy="50" r="40" fill="red"/>
  <rect mask="url(#myMask)" width="100%" height="100%" fill="lime"/>
</svg>