cool#10610 Ensure the parent-child relations of comments.
[LibreOffice.git] / svgio / qa / cppunit / data / ClipPathUsingClipPath.svg
blob5eaa7928cb852f9a9c5089683e35e216c9f55a5e
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <svg
3 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4 <defs>
6 <clipPath id="clip1">
7 <polygon id="clip1Shape" points="100,10 40,180 190,60 10,60 160,180 100,10" stroke="blue" />
8 </clipPath>
10 <clipPath id="clip2">
11 <circle id="clip2Shape" cx="100" cy="100" r="65" />
12 </clipPath>
15 <clipPath id="clipIntersection" clip-path="url(#clip1)">
16 <use x="0" y="0" width="200" height="200" xlink:href="#clip2Shape" />
17 </clipPath>
19 </defs>
21 <rect x="10" y="10" width="180" height="180" fill="red"
22 clip-path="url(#clipIntersection)" transform="translate(200)" />
24 </svg>