зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
427 B
XML
12 строки
427 B
XML
<svg xmlns="http://www.w3.org/2000/svg"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<defs>
|
|
<clipPath id="myClipPath">
|
|
<rect x="100" y="100" width="100" height="100"/>
|
|
</clipPath>
|
|
<rect x="0" y="0" width="100" height="100" fill="red" id="abc"/>
|
|
</defs>
|
|
<rect x="0" y="0" width="100%" height="100%" fill="lime"/>
|
|
<use xlink:href="#abc"
|
|
x="100" y="100" clip-path="url(#myClipPath)"/>
|
|
</svg> |