summaryrefslogtreecommitdiff
path: root/test/svg/doc.8.clip-user3.svg
diff options
context:
space:
mode:
Diffstat (limited to 'test/svg/doc.8.clip-user3.svg')
-rw-r--r--test/svg/doc.8.clip-user3.svg15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/svg/doc.8.clip-user3.svg b/test/svg/doc.8.clip-user3.svg
new file mode 100644
index 000000000..8ff61d593
--- /dev/null
+++ b/test/svg/doc.8.clip-user3.svg
@@ -0,0 +1,15 @@
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="1000" height="1000">
+ <clipPath id="clip" clipPathUnits="userSpaceOnUse" >
+ <circle cx="500" cy="-500" r="400" />
+ </clipPath>
+
+ <clipPath id="clip2" clipPathUnits="userSpaceOnUse" >
+ <rect x="100" y="-900" width="800" height="400"/>
+ </clipPath>
+
+ <g clip-path="url(#clip)">
+ <rect x="100" y="-900" width="800" height="800"
+ stroke="green" stroke-width="100"
+ clip-path="url(#clip2)" />
+ </g>
+</svg>