|
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"> |
|
6 |
|
7 <title>Testcase for alpha mask</title> |
|
8 |
|
9 <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=793617 --> |
|
10 |
|
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> |