gecko-dev/layout/reftests/svg/mask-ref-loop-01.svg

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 строка
694 B
XML
Исходник Обычный вид История

<!--
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>