summaryrefslogtreecommitdiff
path: root/test/svg/doc.9.clip-object3.svg
diff options
context:
space:
mode:
Diffstat (limited to 'test/svg/doc.9.clip-object3.svg')
-rw-r--r--test/svg/doc.9.clip-object3.svg15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/svg/doc.9.clip-object3.svg b/test/svg/doc.9.clip-object3.svg
new file mode 100644
index 000000000..b291df79f
--- /dev/null
+++ b/test/svg/doc.9.clip-object3.svg
@@ -0,0 +1,15 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="1000">
+ <clipPath id="clip" clipPathUnits="objectBoundingBox">
+ <circle cx=".5" cy=".5" r=".5" />
+ </clipPath>
+
+ <clipPath id="clip2" clipPathUnits="objectBoundingBox">
+ <rect x="0" y="0" width="1" height="0.5"/>
+ </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>