diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-07 10:27:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-07 10:27:02 +0100 |
commit | 7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea (patch) | |
tree | 3dc7962c6f81dac63e0315883a2fff03dc78cd2b /Libraries/LibHTML/DOM/HTMLTitleElement.h | |
parent | 6a3b12664a7ce85bef93497df70c0b96cfc509d0 (diff) | |
download | serenity-7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea.zip |
LibWeb: Move everything into the Web namespace
Diffstat (limited to 'Libraries/LibHTML/DOM/HTMLTitleElement.h')
-rw-r--r-- | Libraries/LibHTML/DOM/HTMLTitleElement.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Libraries/LibHTML/DOM/HTMLTitleElement.h b/Libraries/LibHTML/DOM/HTMLTitleElement.h index 4343fbb2f2..c5731d5f46 100644 --- a/Libraries/LibHTML/DOM/HTMLTitleElement.h +++ b/Libraries/LibHTML/DOM/HTMLTitleElement.h @@ -28,6 +28,8 @@ #include <LibHTML/DOM/HTMLElement.h> +namespace Web { + class HTMLTitleElement : public HTMLElement { public: HTMLTitleElement(Document&, const String& tag_name); @@ -39,3 +41,5 @@ inline bool is<HTMLTitleElement>(const Node& node) { return is<Element>(node) && to<Element>(node).tag_name().to_lowercase() == "title"; } + +} |