From 5608bc4eaf6bbc72def4cdb09052a6e91e14a3c1 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 23 Mar 2022 18:55:54 -0400 Subject: LibWeb: Remove inheritance of FormAssociatedElement from HTMLElement HTMLObjectElement will need to be both a FormAssociatedElement and a BrowsingContextContainer. Currently, both of these classes inherit from HTMLElement. This can work in C++, but is generally frowned upon, and doesn't play particularly well with the rest of LibWeb. Instead, we can essentially revert commit 3bb5c62 to remove HTMLElement from FormAssociatedElement's hierarchy. This means that objects such as HTMLObjectElement individually inherit from FormAssociatedElement and HTMLElement now. Some caveats are: * FormAssociatedElement still needs to know when the HTMLElement is inserted into and removed from the DOM. This hook is automatically injected via a macro now, while still allowing classes like HTMLInputElement to also know when the element is inserted. * Casting from a DOM::Element to a FormAssociatedElement is now a sideways cast, rather than directly following an inheritance chain. This means static_cast cannot be used here; but we can safely use dynamic_cast since the only 2 instances of this already use RTTI to verify the cast. --- Userland/Libraries/LibWeb/HTML/HTMLFieldSetElement.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Userland/Libraries/LibWeb/HTML/HTMLFieldSetElement.h') diff --git a/Userland/Libraries/LibWeb/HTML/HTMLFieldSetElement.h b/Userland/Libraries/LibWeb/HTML/HTMLFieldSetElement.h index c0b5fe9389..cb3427e697 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLFieldSetElement.h +++ b/Userland/Libraries/LibWeb/HTML/HTMLFieldSetElement.h @@ -7,10 +7,15 @@ #pragma once #include +#include namespace Web::HTML { -class HTMLFieldSetElement final : public FormAssociatedElement { +class HTMLFieldSetElement final + : public HTMLElement + , public FormAssociatedElement { + FORM_ASSOCIATED_ELEMENT(HTMLElement, HTMLFieldSetElement) + public: using WrapperType = Bindings::HTMLFieldSetElementWrapper; -- cgit v1.2.3