diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/svg/mask-ref-loop-01.svg | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/svg/mask-ref-loop-01.svg b/layout/reftests/svg/mask-ref-loop-01.svg new file mode 100644 index 0000000000..e4be5acd5d --- /dev/null +++ b/layout/reftests/svg/mask-ref-loop-01.svg @@ -0,0 +1,20 @@ +<!-- + Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ +--> +<svg xmlns="http://www.w3.org/2000/svg"> + + <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=1392235 --> + + <title>Test handling of simple mask reference loop</title> + + <mask id="mask" x="20" y="20" width="100" height="100" + maskUnits="userSpaceOnUse" maskContentUnits="userSpaceOnUse"> + <rect x="20" y="20" width="100" height="100" fill="white" mask="url(#mask)"/> + </mask> + + <rect width="100%" height="100%" fill="lime"/> + <rect width="140" height="140" fill="red" mask="url(#mask)"/> + <rect x="20" y="20" width="100" height="100" fill="lime"/> + +</svg> |