Add closepath test

This commit is contained in:
JSCHILL1 2009-07-05 08:14:40 -05:00
parent 06f008a908
commit f1f0aab965
4 changed files with 23 additions and 2 deletions

View file

@ -0,0 +1,11 @@
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<g>
<linearGradient id="g1">
<stop offset="0" stop-color="blue"/>
<stop offset="1" stop-color="red"/>
</linearGradient>
</g>
</defs>
<rect fill="url(#g1)" width="100" height="100" />
</svg>

After

Width:  |  Height:  |  Size: 249 B

View file

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg">
<path fill="none" stroke="#000" d="M10,10h100v100h-100z"/>
</svg>

After

Width:  |  Height:  |  Size: 106 B