diff options
author | Andreas Kling <kling@serenityos.org> | 2021-03-16 18:55:53 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-16 19:00:42 +0100 |
commit | cad4cc9a2aaefabcf92a81a410a3337b4bf7e408 (patch) | |
tree | 2591fe731601dbc4983e7a06569bee91654d6251 /Userland/Libraries/LibWeb/Forward.h | |
parent | 6c8185151e564a79c696f24583aac4eafd3bcf04 (diff) | |
download | serenity-cad4cc9a2aaefabcf92a81a410a3337b4bf7e408.zip |
LibWeb: Invalidate element style after setting Element.style.foo
This makes us recompute style for the element so the change actually
takes effect. :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Forward.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index 624f4b2209..c4f2c5512a 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -33,6 +33,7 @@ class CSSImportRule; class CSSStyleDeclaration; class CSSStyleRule; class CSSStyleSheet; +class ElementInlineCSSStyleDeclaration; class Length; class Selector; class StyleProperties; |