no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / svg / mask-opacity-02.svg
blobc9a7b90181d66d838830f6e4ddf41287c4aacf95
1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink">
3 <title>Testcase for the combination of use, mask, opacity</title>
4 <!-- Shapes -->
5 <defs>
6 <rect id="frame" x="0" y="0" width="256" height="256"></rect>
7 <circle id="outter" cx="128" cy="128" r="128"></circle>
8 </defs>
10 <!-- Masks -->
11 <defs>
12 <mask id="donut">
13 <use xlink:href="#outter" fill="white"></use>
14 </mask>
15 </defs>
17 <g transform="translate(0,0)">
18 <use xlink:href="#frame" class="shape" opacity="0.33" mask="url(#donut)"></use>
19 </g>
20 </svg>