diff --git a/Libraries/LibWeb/SVG/SVGPathElement.cpp b/Libraries/LibWeb/SVG/SVGPathElement.cpp index 2c43ff0c18..632b4a6996 100644 --- a/Libraries/LibWeb/SVG/SVGPathElement.cpp +++ b/Libraries/LibWeb/SVG/SVGPathElement.cpp @@ -133,6 +133,9 @@ void PathDataParser::parse_drawto() { parse_smooth_quadratic_bezier_curveto(); } else if (match('A') || match('a')) { parse_elliptical_arc(); + } else { + dbg() << "PathDataParser::parse_drawto failed to match: '" << ch() << "'"; + TODO(); } }