LibWeb: Implement the "push down values" editing algorithm

This commit is contained in:
Jelle Raaijmakers 2025-01-07 10:31:26 +01:00 committed by Andreas Kling
commit 9750896af3
Notes: github-actions[bot] 2025-01-10 22:37:51 +00:00
3 changed files with 627 additions and 4 deletions

View file

@ -211,6 +211,7 @@ public:
void reset_animated_css_properties();
GC::Ptr<CSS::ElementInlineCSSStyleDeclaration> inline_style() { return m_inline_style; }
GC::Ptr<CSS::ElementInlineCSSStyleDeclaration const> inline_style() const { return m_inline_style; }
CSS::CSSStyleDeclaration* style_for_bindings();