Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/polygon-marker-01.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<title>Test that marker-start and marker-end are co-located for polygon elements</title>
<!--
This test checks that marker-start and marker-end are co-located for polygon elements.
-->
<defs>
<marker id="markerStart" markerWidth="40" markerHeight="40" refX="20" refY="20">
<rect width="50" height="55" fill="red"/>
</marker>
<marker id="markerEnd" markerWidth="40" markerHeight="40" refX="20" refY="20">
<rect width="50" height="55" fill="lime"/>
</marker>
</defs>
<rect width="100%" height="100%" fill="lime"/>
<polygon marker-start="url(#markerStart)" marker-end="url(#markerEnd)" points="250,150 200,150" />
</svg>