Add closepath test
This commit is contained in:
parent
06f008a908
commit
f1f0aab965
4 changed files with 23 additions and 2 deletions
11
unittests/important-groups-in-defs.svg
Normal file
11
unittests/important-groups-in-defs.svg
Normal 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 |
3
unittests/path-with-closepath.svg
Normal file
3
unittests/path-with-closepath.svg
Normal 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 |
Loading…
Add table
Add a link
Reference in a new issue