blob: d4046e2b4344bb14a429fa452436c68e3d5b1bd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Testcase for the combination of use, mask, fill-opacity</title>
<!-- Shapes -->
<defs>
<rect id="frame" x="0" y="0" width="256" height="256"></rect>
<circle id="outter" cx="128" cy="128" r="128"></circle>
</defs>
<!-- Masks -->
<defs>
<mask id="donut">
<use xlink:href="#outter" fill="white"></use>
</mask>
</defs>
<g transform="translate(0,0)">
<use xlink:href="#frame" class="shape" fill-opacity="0.33" mask="url(#donut)"></use>
</g>
</svg>
|