summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/DOM/HTMLImageElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibHTML/DOM/HTMLImageElement.cpp')
-rw-r--r--Libraries/LibHTML/DOM/HTMLImageElement.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Libraries/LibHTML/DOM/HTMLImageElement.cpp b/Libraries/LibHTML/DOM/HTMLImageElement.cpp
index 0fcb61267f..316b6c0ce2 100644
--- a/Libraries/LibHTML/DOM/HTMLImageElement.cpp
+++ b/Libraries/LibHTML/DOM/HTMLImageElement.cpp
@@ -32,6 +32,8 @@
#include <LibHTML/Layout/LayoutImage.h>
#include <LibHTML/ResourceLoader.h>
+namespace Web {
+
HTMLImageElement::HTMLImageElement(Document& document, const String& tag_name)
: HTMLElement(document, tag_name)
{
@@ -121,3 +123,5 @@ void HTMLImageElement::set_volatile(Badge<LayoutDocument>, bool v)
return;
m_image_decoder = Gfx::ImageDecoder::create(m_encoded_data.data(), m_encoded_data.size());
}
+
+}