diff options
author | Luke <luke.wilde@live.co.uk> | 2020-10-10 02:48:05 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-22 15:24:42 +0200 |
commit | e8a9e8aed51fc6a6b1c03d2b84f714ede5bcb341 (patch) | |
tree | 957ea71bf4d8554b5c545b40a00f35f03c461440 /Libraries/LibWeb/DOM/ElementFactory.h | |
parent | efaf03e986337e096e16e1aee938ddc9f8df97f4 (diff) | |
download | serenity-e8a9e8aed51fc6a6b1c03d2b84f714ede5bcb341.zip |
LibWeb: Add namespace to Element
Diffstat (limited to 'Libraries/LibWeb/DOM/ElementFactory.h')
-rw-r--r-- | Libraries/LibWeb/DOM/ElementFactory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/DOM/ElementFactory.h b/Libraries/LibWeb/DOM/ElementFactory.h index 2dc5ac3308..c1c811a9a4 100644 --- a/Libraries/LibWeb/DOM/ElementFactory.h +++ b/Libraries/LibWeb/DOM/ElementFactory.h @@ -30,6 +30,6 @@ namespace Web::DOM { -NonnullRefPtr<Element> create_element(Document&, const FlyString& tag_name); +NonnullRefPtr<Element> create_element(Document&, const FlyString& tag_name, const FlyString& namespace_); } |