Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
1 <!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
4 -->
5 <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">
7 <title>Testcase for alpha mask</title>
9 <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=793617 -->
11 <mask id="m" maskContentUnits="objectBoundingBox" style="mask-type: alpha">
12 <rect x=".1" y=".1" width=".8" height=".8" fill="black" fill-opacity="0.5"/>
13 </mask>
14 <rect width="100" height="100" fill="blue" mask="url(#m)"/>
15 </svg>