mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
352 B
XML
13 lines
352 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg"
|
||
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||
|
<defs>
|
||
|
<text id="myText">Used Text Element
|
||
|
<set attributeName="display" to="none"/>
|
||
|
</text>
|
||
|
</defs>
|
||
|
<use xlink:href="#myText" x="20" y="40"/>
|
||
|
<text x="20" y="60">Normal Text Element
|
||
|
<set attributeName="display" to="none"/>
|
||
|
</text>
|
||
|
</svg>
|