mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 13:19:47 +00:00
LibWeb: Add namespace to Element
This commit is contained in:
@@ -425,8 +425,8 @@ bool PathDataParser::match_coordinate() const
|
||||
return !done() && (isdigit(ch()) || ch() == '-' || ch() == '+' || ch() == '.');
|
||||
}
|
||||
|
||||
SVGPathElement::SVGPathElement(DOM::Document& document, const FlyString& tag_name)
|
||||
: SVGGeometryElement(document, tag_name)
|
||||
SVGPathElement::SVGPathElement(DOM::Document& document, const QualifiedName& qualified_name)
|
||||
: SVGGeometryElement(document, qualified_name)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user