Bug 33115 - PathElementAddQuadCurveToPoint not handled for <marker>
Summary: PathElementAddQuadCurveToPoint not handled for <marker>
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: SVG (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-01-02 13:46 PST by Nikolas Zimmermann
Modified: 2023-10-05 06:30 PDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nikolas Zimmermann 2010-01-02 13:46:54 PST
Marker elements don't support paths which contain PathElementAddQuadCurveToPoint elements. See SVGMarkerLayoutInfo, updateMarkerDataForElement() method.
Comment 1 Ahmad Saleem 2023-10-05 06:30:06 PDT
Following Blink commit: https://chromium.googlesource.com/chromium/src.git/+/7003bed16de3861e47d6bb0287ba4d6bffcfea04

Removed this FIXME:

https://searchfox.org/wubkat/source/Source/WebCore/rendering/svg/SVGMarkerData.h#118

and changed it into:

case PathElement::Type::AddQuadCurveToPoint:
            m_inslopePoints[0] = points[0];
            m_inslopePoints[1] = points[1];
            m_origin = points[1];
            break;