summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/mask-image-filter-transform-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/mask-image-filter-transform-ref.html')
-rw-r--r--layout/reftests/svg/mask-image-filter-transform-ref.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/layout/reftests/svg/mask-image-filter-transform-ref.html b/layout/reftests/svg/mask-image-filter-transform-ref.html
new file mode 100644
index 0000000000..d040e160a9
--- /dev/null
+++ b/layout/reftests/svg/mask-image-filter-transform-ref.html
@@ -0,0 +1,7 @@
+<svg width="400" height="400">
+ <mask id="m">
+ <image x="20" y="20" width="100" height="100"
+ href="data:image/svg+xml,<svg width='100' height='100' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' fill='red' /></svg>" />
+ </mask>
+ <rect mask="url(#m)" x="50" y="50" width="50%" height="50%" fill="black"></rect>
+</svg>