summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/marker-orientation-05.svg
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/marker-orientation-05.svg')
-rw-r--r--layout/reftests/svg/marker-orientation-05.svg20
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/svg/marker-orientation-05.svg b/layout/reftests/svg/marker-orientation-05.svg
new file mode 100644
index 0000000000..129e14cf20
--- /dev/null
+++ b/layout/reftests/svg/marker-orientation-05.svg
@@ -0,0 +1,20 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
+ <defs>
+ <marker id="arrowAutoStartRev" orient="auto-start-reverse" markerUnits="userSpaceOnUse" overflow="visible">
+ <path d="M25,25 L0,0 L0,50 z" fill="lime" stroke="lime" stroke-width="2" />
+ </marker>
+ <marker id="arrowSW" orient="135" markerUnits="userSpaceOnUse" overflow="visible">
+ <path d="M25,25 L0,0 L0,50 z" fill="red"/>
+ </marker>
+ <marker id="arrowAuto" orient="auto" markerUnits="userSpaceOnUse" overflow="visible">
+ <path d="M25,25 L0,0 L0,50 z" fill="red"/>
+ </marker>
+ </defs>
+ <rect width="100%" height="100%" fill="lime" />
+ <path d="M 340,100 h50 v50 h-50 z" marker-start="url(#arrowSW)" fill="none"/>
+ <path d="M 340,100 h50 v50 h-50 z" marker-start="url(#arrowAutoStartRev)" fill="none"/>
+ <g transform="translate(0, 50)">
+ <path d="M 340,100 h50 v50 h-50 z" marker-start="url(#arrowAuto)" fill="none"/>
+ <path d="M 340,100 h50 v50 h-50 z" marker-end="url(#arrowAutoStartRev)" fill="none"/>
+ </g>
+</svg>