diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-02-11 16:14:58 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-11 21:38:27 +0100 |
commit | 21bdcee3c3ee604742ea6524a320e0cf5ad65abb (patch) | |
tree | c319c012349fd18c49e1ffb932e38b4a2faa11ee /Userland/Libraries/LibWeb/DOM/ElementFactory.cpp | |
parent | 1dde6a0a2bfef387c464a35de6d1b7332c4437b5 (diff) | |
download | serenity-21bdcee3c3ee604742ea6524a320e0cf5ad65abb.zip |
LibWeb: Add SVG `<circle>` element and test case :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/DOM/ElementFactory.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/DOM/ElementFactory.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/DOM/ElementFactory.cpp b/Userland/Libraries/LibWeb/DOM/ElementFactory.cpp index afde1ff1ed..02e587b4a1 100644 --- a/Userland/Libraries/LibWeb/DOM/ElementFactory.cpp +++ b/Userland/Libraries/LibWeb/DOM/ElementFactory.cpp @@ -76,6 +76,7 @@ #include <LibWeb/HTML/HTMLUListElement.h> #include <LibWeb/HTML/HTMLUnknownElement.h> #include <LibWeb/HTML/HTMLVideoElement.h> +#include <LibWeb/SVG/SVGCircleElement.h> #include <LibWeb/SVG/SVGGElement.h> #include <LibWeb/SVG/SVGPathElement.h> #include <LibWeb/SVG/SVGRectElement.h> @@ -235,6 +236,8 @@ NonnullRefPtr<Element> create_element(Document& document, const FlyString& tag_n return adopt_ref(*new HTML::HTMLElement(document, move(qualified_name))); if (lowercase_tag_name == SVG::TagNames::svg) return adopt_ref(*new SVG::SVGSVGElement(document, move(qualified_name))); + if (lowercase_tag_name == SVG::TagNames::circle) + return adopt_ref(*new SVG::SVGCircleElement(document, move(qualified_name))); if (lowercase_tag_name == SVG::TagNames::path) return adopt_ref(*new SVG::SVGPathElement(document, move(qualified_name))); if (lowercase_tag_name == SVG::TagNames::rect) |