1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

LibWeb: Make DOM::Node::set_needs_style_update() schedule the update

After you mark a node as needing new style, there's no situation in
which we don't want a style update to happen, so just take care of
scheduling it automatically.
This commit is contained in:
Andreas Kling 2020-12-13 15:19:42 +01:00
parent b9b7b2b28a
commit 6af55a234f
4 changed files with 10 additions and 4 deletions

View file

@ -138,7 +138,7 @@ public:
virtual bool is_child_allowed(const Node&) const { return true; }
bool needs_style_update() const { return m_needs_style_update; }
void set_needs_style_update(bool value) { m_needs_style_update = value; }
void set_needs_style_update(bool);
void invalidate_style();