summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/objectBoundingBox-and-mask-02.svg
blob: 8cab2d32ac2ba735aec6cdca03810954f491f701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=621210 -->

<svg xmlns="http://www.w3.org/2000/svg">
  <title>Testcase for re-using an objectBoundingBox mask with a &lt;g&gt; child</title>
  <mask id="mask" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox">
    <g>
      <rect width="1" height="1" fill="white"/>
    </g>
  </mask>
  <rect width="100%" height="100%" fill="red"/>
  <rect mask="url(#mask)" width="1" height="1" fill="red"/>
  <rect mask="url(#mask)" width="100%" height="100%" fill="lime"/>
</svg>