marker-implicit-subpaths.html (633B)
1 <!doctype html> 2 <title>Marker on implicit subpath</title> 3 <link rel="help" href="https://svgwg.org/svg2-draft/painting.html#RenderingMarkers"> 4 <link rel="help" href="https://svgwg.org/svg2-draft/paths.html#PathDataClosePathCommand"> 5 <link rel="match" href="../../struct/reftests/reference/green-100x100.html"> 6 <svg width="400" viewBox="-200 0 400 150"> 7 <marker id="m" markerUnits="userSpaceOnUse" orient="auto" overflow="visible"> 8 <rect width="100" height="100" fill="green"/> 9 </marker> 10 <rect x="-200" width="100" height="100" fill="red"/> 11 <path d="M-200,0ZZZ" marker-mid="url(#m)" stroke="red" stroke-width="4"/> 12 </svg>