summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/mask-css-transform-ref.html
blob: 3a27179a21342e9ec1a0cfa30d135fbeb782c2c3 (plain)
1
2
3
4
5
6
7
8
9
<svg style="width: 500px; height: 500px; border: 1px solid green;">
  <defs>
    <mask id="mask">
      <rect x="200px" y="250px" width="100px" height="150px" fill="#ffffff" />
      <rect x="50px" y="105px" width="110px" height="195px" fill="blue" />
    </mask>
  </defs>
  <rect mask="url(#mask)" width="500px" height="500px" fill="red" />
</svg>