From 40ab71e41e87461c19359a1bf20ecc4741051a93 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Sun, 7 Sep 2025 14:27:04 +0100 Subject: [PATCH] LibWeb/DOM: Expose AbstractElement outside of LibWeb This ends up used by the WebContent service's ConnectionFromClient in a later commit. --- Libraries/LibWeb/DOM/AbstractElement.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibWeb/DOM/AbstractElement.h b/Libraries/LibWeb/DOM/AbstractElement.h index eb9d790e985..e60034d9c89 100644 --- a/Libraries/LibWeb/DOM/AbstractElement.h +++ b/Libraries/LibWeb/DOM/AbstractElement.h @@ -14,7 +14,7 @@ namespace Web::DOM { // Either an Element or a PseudoElement -class AbstractElement { +class WEB_API AbstractElement { public: AbstractElement(GC::Ref, Optional = {});