summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/clipPath-basic-shape-transform.html
blob: 1ee187fef1965cd878a9a597f9bfad47d1b1f55f (plain)
1
2
3
4
5
6
7
8
<svg style="width: 400px; height: 400px">
  <mask id="m1">
    <g transform="translate(100,90)">
      <rect width="200" height="200" fill="blue" style="clip-path: inset(50px 50px)"></rect>
    </g>
  </mask>
  <rect width="400" height="400" mask="url(#m1)"></rect>
</svg>