diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
commit | c853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch) | |
tree | 7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /testfiles/rendering_tests/test-use-ref.svg | |
parent | Initial commit. (diff) | |
download | inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.tar.xz inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.zip |
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testfiles/rendering_tests/test-use-ref.svg')
-rw-r--r-- | testfiles/rendering_tests/test-use-ref.svg | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/testfiles/rendering_tests/test-use-ref.svg b/testfiles/rendering_tests/test-use-ref.svg new file mode 100644 index 0000000..0e6edf3 --- /dev/null +++ b/testfiles/rendering_tests/test-use-ref.svg @@ -0,0 +1,89 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.1" + id="root" + width="100" + height="100" + viewBox="0 0 100 100"> + <style> + .magenta { + stroke:none; + fill:#ff00ff; + } + </style> + <defs> + <marker + id="arrow" + style="overflow:visible;" + refX="0.0" + refY="0.0" + orient="auto"> + <path + style="stroke:#ff00ff;stroke-width:1pt;fill:#ff00ff" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + transform="scale(0.4) rotate(180) translate(10,0)" /> + </marker> + <linearGradient + id="gradientBase"> + <stop + style="stop-color:#ff00ff;stop-opacity:1;" + offset="0" /> + <stop + style="stop-color:#ff00ff;stop-opacity:0;" + offset="1" /> + </linearGradient> + <linearGradient + id="gradient" + xlink:href="#gradientBase" + x1="10" + y1="50" + x2="90" + y2="50" + gradientUnits="userSpaceOnUse" /> + <filter + id="filter" + style="color-interpolation-filters:sRGB" + x="-1.2" + y="-1.2" + width="3.4" + height="3.4"> + <feGaussianBlur + stdDeviation="5" /> + </filter> + </defs> + <rect + class="green" + style="filter:url(#filter)" + x="15" + y="15" + width="10" + height="10" /> + <rect + id="rect" + class="magenta" + x="10" + y="80" + width="10" + height="10" /> + <use + xlink:href="#rect" + transform="translate(15)" /> + <use + xlink:href="#rect" + transform="translate(30)" /> + <use + xlink:href="#rect" + transform="translate(45)" /> + <rect + style="fill:url(#gradient);stroke:none" + x="10" + y="45" + width="80" + height="10" /> + <path + style="fill:none;stroke:#ff00ff;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;marker-end:url(#arrow)" + d="M 90,20 H 45" /> +</svg> |