summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/DOM/HTMLBlinkElement.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-07 10:27:02 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-07 10:27:02 +0100
commit7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea (patch)
tree3dc7962c6f81dac63e0315883a2fff03dc78cd2b /Libraries/LibHTML/DOM/HTMLBlinkElement.h
parent6a3b12664a7ce85bef93497df70c0b96cfc509d0 (diff)
downloadserenity-7a6c4a72d5a7da31dbbd5178a469ae37ef68eaea.zip
LibWeb: Move everything into the Web namespace
Diffstat (limited to 'Libraries/LibHTML/DOM/HTMLBlinkElement.h')
-rw-r--r--Libraries/LibHTML/DOM/HTMLBlinkElement.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Libraries/LibHTML/DOM/HTMLBlinkElement.h b/Libraries/LibHTML/DOM/HTMLBlinkElement.h
index 3cb5b350d4..cb093ce5d5 100644
--- a/Libraries/LibHTML/DOM/HTMLBlinkElement.h
+++ b/Libraries/LibHTML/DOM/HTMLBlinkElement.h
@@ -29,6 +29,8 @@
#include <LibCore/Forward.h>
#include <LibHTML/DOM/HTMLElement.h>
+namespace Web {
+
class HTMLBlinkElement : public HTMLElement {
public:
HTMLBlinkElement(Document&, const String& tag_name);
@@ -39,3 +41,5 @@ private:
NonnullRefPtr<Core::Timer> m_timer;
};
+
+}