Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / marker-referencePoint.svg
blob05410e0e75792b10dced9e063b58831115105c0b
1 <?xml version="1.0" standalone="no"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
3 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4 <svg width="4in" height="2in"
5 viewBox="0 0 4000 2000" version="1.1"
6 xmlns="http://www.w3.org/2000/svg">
7 <defs>
8 <marker id="Triangle"
9 viewBox="0 0 10 10" refX="0" refY="5"
10 markerUnits="strokeWidth"
11 markerWidth="4" markerHeight="3"
12 orient="auto">
13 <path d="M 0 0 L 10 5 L 0 10 z" />
14 </marker>
15 </defs>
16 <rect x="10" y="10" width="3980" height="1980"
17 fill="none" stroke="blue" stroke-width="10" />
18 <desc>Placing an arrowhead at the end of a path.
19 </desc>
20 <path d="M 1000 750 L 2000 750 L 2500 1250"
21 fill="none" stroke="black" stroke-width="100"
22 marker-end="url(#Triangle)" />
23 </svg>