blob: 62aad437c27ac833a0d864bb3b00f9488fec2419 (
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 shape, mask, 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)">
<rect x="0" y="0" width="512" height="256" class="shape" opacity="0.33" mask="url(#donut)"></rect>
</g>
</svg>
|