summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/mask-css-transform.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/mask-css-transform.html')
-rw-r--r--layout/reftests/svg/mask-css-transform.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/layout/reftests/svg/mask-css-transform.html b/layout/reftests/svg/mask-css-transform.html
new file mode 100644
index 0000000000..e6bc8f69ed
--- /dev/null
+++ b/layout/reftests/svg/mask-css-transform.html
@@ -0,0 +1,19 @@
+<style>
+ #square1 {
+ transform: translate(100px, 100px) scale(2,3);
+ }
+ #square2 {
+ transform: scale(2,3);
+ }
+</style>
+<svg style="width: 500px; height: 500px; border: 1px solid green;">
+ <defs>
+ <mask id="mask">
+ <rect id="square1" x="50px" y="50px" width="50px" height="50px" fill="#ffffff" />
+ <svg viewBox="0 0 100 100">
+ <rect id="square2" x="5" y="7" width="11" height="13" fill="blue" />
+ </svg>
+ </mask>
+ </defs>
+ <rect mask="url(#mask)" width="500px" height="500px" fill="red" />
+</svg>