summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLImageElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLImageElement.h')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLImageElement.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.h b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.h
index 29531f56f2..e488e96f58 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLImageElement.h
+++ b/Userland/Libraries/LibWeb/HTML/HTMLImageElement.h
@@ -10,11 +10,16 @@
#include <AK/OwnPtr.h>
#include <LibGfx/Forward.h>
#include <LibWeb/HTML/FormAssociatedElement.h>
+#include <LibWeb/HTML/HTMLElement.h>
#include <LibWeb/Loader/ImageLoader.h>
namespace Web::HTML {
-class HTMLImageElement final : public FormAssociatedElement {
+class HTMLImageElement final
+ : public HTMLElement
+ , public FormAssociatedElement {
+ FORM_ASSOCIATED_ELEMENT(HTMLElement, HTMLImageElement)
+
public:
using WrapperType = Bindings::HTMLImageElementWrapper;