summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLDivElement.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLDivElement.h b/Userland/Libraries/LibWeb/HTML/HTMLDivElement.h
index 4af8c17e41..9bb16ebf3d 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLDivElement.h
+++ b/Userland/Libraries/LibWeb/HTML/HTMLDivElement.h
@@ -11,7 +11,7 @@
namespace Web::HTML {
-class HTMLDivElement final : public HTMLElement {
+class HTMLDivElement : public HTMLElement {
WEB_PLATFORM_OBJECT(HTMLDivElement, HTMLElement);
public:
@@ -20,9 +20,10 @@ public:
// https://www.w3.org/TR/html-aria/#el-div
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::generic; }
-private:
+protected:
HTMLDivElement(DOM::Document&, DOM::QualifiedName);
+private:
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
};