forked from amazingfate/loongoffice
Change-Id: I6f96cc7c059ece5f9401fc0ae552cf279e53109c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167230 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org> Tested-by: Jenkins
9 lines
363 B
XML
9 lines
363 B
XML
<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<marker id="triangle" viewBox="0 0 10 10" refX="5" refY="5" markerWidth="6" markerHeight="6" orient="auto">
|
|
<path d="M 0 0 L 10 5 L 0 10 z" fill="context-fill" />
|
|
</marker>
|
|
</defs>
|
|
<line x1="10" y1="10" x2="90" y2="90" fill="red" stroke="red" marker-end="url(#triangle)" />
|
|
</svg>
|