blob: e4be5acd5d9055c5f93735c0f747edfc45eba226 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg">
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=1392235 -->
<title>Test handling of simple mask reference loop</title>
<mask id="mask" x="20" y="20" width="100" height="100"
maskUnits="userSpaceOnUse" maskContentUnits="userSpaceOnUse">
<rect x="20" y="20" width="100" height="100" fill="white" mask="url(#mask)"/>
</mask>
<rect width="100%" height="100%" fill="lime"/>
<rect width="140" height="140" fill="red" mask="url(#mask)"/>
<rect x="20" y="20" width="100" height="100" fill="lime"/>
</svg>
|