mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
874 B
XML
23 lines
874 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">
|
|
<defs>
|
|
<pattern id="p2" width="8" height="8" patternUnits="userSpaceOnUse">
|
|
<rect x="-1" y="-1" width="10" height="10" fill="yellow"/>
|
|
<rect width="4" height="4"/>
|
|
<rect x="4" y="4" width="4" height="4"/>
|
|
</pattern>
|
|
<pattern id="p" width="200" height="200" patternUnits="userSpaceOnUse">
|
|
<g transform="translate(50,120)scale(4)">
|
|
<text style="font: bold 48px sans-serif; fill: url(#p2)">a</text>
|
|
</g>
|
|
</pattern>
|
|
</defs>
|
|
<rect width="200" height="200" fill="url(#p)" transform="scale(2)"/>
|
|
<g transform="scale(2)translate(50,120)scale(4)">
|
|
<text style="font: bold 48px sans-serif; fill: none; stroke: black; stroke-width: 1px">a</text>
|
|
</g>
|
|
</svg>
|