blob: edf9f6f911fe22694e059656bc20f3ecd748c58f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
<title>Testcase for the combination of mask, clipPath and opacity</title>
<defs>
<mask id="m1" maskContentUnits="objectBoundingBox" style="mask-type: alpha;">
<rect width="1" height="1" style="stroke:#ffffff; fill: #ffffff; opacity: 0.5;" mask="url(#m2)"/>
</mask>
<mask id="m2" maskContentUnits="objectBoundingBox" style="mask-type: alpha;">
<rect width="0.5" height="1" style="stroke:none; fill: #ffffff"/>
</mask>
</defs>
<rect width="100" height="100" fill="blue" mask="url(#m1)"/>
</svg>
|