chromium/third_party/blink/web_tests/svg/custom/marker-degenerate-cubic-segment.html

<!DOCTYPE html>
<svg width="400">
  <marker id="me" orient="auto" overflow="visible">
    <rect x="-1" y="-0.5" width="1" height="1" fill="green"/>
  </marker>
  <g marker-end="url(#me)" stroke-width="100" stroke="red">
    <!-- Points 3 and 4 coincident -->
    <path d="M50,0C50,50 50,100 50,100"/>
    <!-- Points 2, 3 and 4 coincident -->
    <path d="M50,0C50,100 50,100 50,100" transform="translate(100 0)"/>
  </g>
  <marker id="ms" orient="auto" overflow="visible">
    <rect x="0" y="-0.5" width="1" height="1" fill="green"/>
  </marker>
  <g marker-start="url(#ms)" stroke-width="100" stroke="red" transform="translate(200 0)">
    <!-- Points 1 and 2 coincident -->
    <path d="M50,0C50,0 50,50 50,100"/>
    <!-- Points 1, 2 and 3 coincident -->
    <path d="M50,0C50,0 50,0 50,100" transform="translate(100 0)"/>
  </g>
</svg>