mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 04:52:06 +02:00
LibWeb: Add namespace to Element
This commit is contained in:
Notes:
sideshowbarker
2024-07-19 01:48:45 +09:00
Author: https://github.com/Lubrsi Commit: https://github.com/SerenityOS/serenity/commit/e8a9e8aed51 Pull-request: https://github.com/SerenityOS/serenity/pull/3748
@@ -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