summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/objectBoundingBox-and-mask-02.svg
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/objectBoundingBox-and-mask-02.svg')
-rw-r--r--layout/reftests/svg/objectBoundingBox-and-mask-02.svg17
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/svg/objectBoundingBox-and-mask-02.svg b/layout/reftests/svg/objectBoundingBox-and-mask-02.svg
new file mode 100644
index 0000000000..8cab2d32ac
--- /dev/null
+++ b/layout/reftests/svg/objectBoundingBox-and-mask-02.svg
@@ -0,0 +1,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>