summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLObjectElement.h')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLObjectElement.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.h b/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.h
index 705fd356d6..b1b99cc13d 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.h
+++ b/Userland/Libraries/LibWeb/HTML/HTMLObjectElement.h
@@ -9,13 +9,17 @@
#include <LibCore/Forward.h>
#include <LibGfx/Forward.h>
#include <LibWeb/HTML/FormAssociatedElement.h>
+#include <LibWeb/HTML/HTMLElement.h>
#include <LibWeb/Loader/ImageLoader.h>
namespace Web::HTML {
class HTMLObjectElement final
- : public FormAssociatedElement
+ : public HTMLElement
+ , public FormAssociatedElement
, public ResourceClient {
+ FORM_ASSOCIATED_ELEMENT(HTMLElement, HTMLObjectElement)
+
public:
using WrapperType = Bindings::HTMLObjectElementWrapper;