1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

LibWeb: Implement StyleSheet.ownerNode :^)

This commit is contained in:
Andreas Kling 2021-03-08 13:40:53 +01:00
parent 183b2e71ba
commit d07fcba69b
5 changed files with 32 additions and 7 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2021, the SerenityOS developers.
* All rights reserved.
*
@ -41,8 +41,14 @@ public:
virtual ~StyleSheet() = default;
DOM::Element* owner_node() { return m_owner_node; }
void set_owner_node(DOM::Element*);
protected:
StyleSheet() = default;
private:
WeakPtr<DOM::Element> m_owner_node;
};
}