summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/use-localRef-marker-01-ref.svg
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /layout/reftests/svg/use-localRef-marker-01-ref.svg
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/svg/use-localRef-marker-01-ref.svg')
-rw-r--r--layout/reftests/svg/use-localRef-marker-01-ref.svg29
1 files changed, 29 insertions, 0 deletions
diff --git a/layout/reftests/svg/use-localRef-marker-01-ref.svg b/layout/reftests/svg/use-localRef-marker-01-ref.svg
new file mode 100644
index 0000000000..fdfca07335
--- /dev/null
+++ b/layout/reftests/svg/use-localRef-marker-01-ref.svg
@@ -0,0 +1,29 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <title>Reference for marker linked to local-ref URL</title>
+ <defs>
+ <marker id="limeCircle" markerWidth="8" markerHeight="8" refX="5" refY="5">
+ <circle cx="5" cy="5" r="2" style="stroke: none; fill:lime;"/>
+ </marker>
+ <marker id="blueCircle" markerWidth="8" markerHeight="8" refX="5" refY="5">
+ <circle cx="5" cy="5" r="2" style="stroke: none; fill:blue;"/>
+ </marker>
+ <marker id="purpleCircle" markerWidth="8" markerHeight="8" refX="5" refY="5">
+ <circle cx="5" cy="5" r="2" style="stroke: none; fill:purple;"/>
+ </marker>
+ </defs>
+ <style>
+ path {
+ stroke: blue;
+ stroke-width: 2px;
+ }
+ </style>
+ <path d="M20,20 L70,20 L120,20" style="marker-start: url(#limeCircle);"/>
+ <path d="M20,40 L70,40 L120,40" style="marker-start: url(#blueCircle);"/>
+ <path d="M20,60 L70,60 L120,60" style="marker-start: url(#blueCircle);"/>
+ <path d="M20,80 L70,80 L120,80" style="marker-mid: url(#limeCircle);"/>
+ <path d="M20,100 L70,100 L120,100" style="marker-mid: url(#blueCircle);"/>
+ <path d="M20,120 L70,120 L120,120" style="marker-mid: url(#blueCircle);"/>
+ <path d="M20,140 L70,140 L120,140" style="marker-end: url(#limeCircle);"/>
+ <path d="M20,160 L70,160 L120,160" style="marker-end: url(#blueCircle);"/>
+ <path d="M20,180 L70,180 L120,180" style="marker-end: url(#blueCircle);"/>
+</svg> \ No newline at end of file