LibWeb/DOM: Expose AbstractElement outside of LibWeb

This ends up used by the WebContent service's ConnectionFromClient in a
later commit.
This commit is contained in:
Sam Atkins 2025-09-07 14:27:04 +01:00 committed by Alexander Kalenik
commit 40ab71e41e
Notes: github-actions[bot] 2025-09-11 16:49:22 +00:00

View file

@ -14,7 +14,7 @@
namespace Web::DOM {
// Either an Element or a PseudoElement
class AbstractElement {
class WEB_API AbstractElement {
public:
AbstractElement(GC::Ref<Element>, Optional<CSS::PseudoElement> = {});