summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001.html')
-rw-r--r--layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001.html b/layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001.html
new file mode 100644
index 0000000000..44ec2997f2
--- /dev/null
+++ b/layout/reftests/svg/svg-integration/clip-path/clip-path-transform-001.html
@@ -0,0 +1,10 @@
+<svg>
+ <defs>
+ <clipPath id="clip" transform="translate(-50,0)">
+ <rect x="0" y="0" width="100" height="100" transform="translate(50,0)"></rect>
+ </clipPath>
+ </defs>
+ <g clip-path="url(#clip)">
+ <circle cx="50" cy="50" r="50" style="fill: green;"></circle>
+ </g>
+</svg>