diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/svg/objectBoundingBox-and-mask-02.svg | 17 |
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 <g> 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> |