diff options
Diffstat (limited to 'tests/arthur/data/1.2/use.svg')
-rw-r--r-- | tests/arthur/data/1.2/use.svg | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/arthur/data/1.2/use.svg b/tests/arthur/data/1.2/use.svg new file mode 100644 index 0000000..ae0bce6 --- /dev/null +++ b/tests/arthur/data/1.2/use.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.2" baseProfile="tiny" width="100%" height="100%" viewBox="0 0 580 400"> + <defs> + <g fill="green"> + <rect id="aMovingRect" width="50" height="50" rx="5" ry="5" fill="inherit" stroke-width="3" stroke="black"> + <animateTransform attributeName="transform" type="translate" values="0,0;0,100" begin="0" dur="2" fill="freeze"/> + </rect> + </g> + </defs> + + <g fill="rgb(157,0,79)"> + <use x="20" xlink:href="#aMovingRect"/> + + <use x="100" fill="rgb(255,28,141)" xlink:href="#aMovingRect"/> + + <use x="180" xlink:href="referencedRect.svg#aMovingRect"/> + + <use x="260" fill="rgb(255,28,141)" xlink:href="referencedRect.svg#aMovingRect"/> + </g> + +</svg>
\ No newline at end of file |