Backed out 6 changesets (bug 1921980) for causing wrench bustages. CLOSED TREE
[gecko.git] / layout / reftests / svg / mask-ref-loop-01.svg
blobe4be5acd5d9055c5f93735c0f747edfc45eba226
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">
7 <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=1392235 -->
9 <title>Test handling of simple mask reference loop</title>
11 <mask id="mask" x="20" y="20" width="100" height="100"
12 maskUnits="userSpaceOnUse" maskContentUnits="userSpaceOnUse">
13 <rect x="20" y="20" width="100" height="100" fill="white" mask="url(#mask)"/>
14 </mask>
16 <rect width="100%" height="100%" fill="lime"/>
17 <rect width="140" height="140" fill="red" mask="url(#mask)"/>
18 <rect x="20" y="20" width="100" height="100" fill="lime"/>
20 </svg>