diff options
author | Andreas Kling <kling@serenityos.org> | 2021-09-24 13:49:57 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-24 15:12:15 +0200 |
commit | f8dd3e14bae66bc9b3b26f4f896d9ca43f26e274 (patch) | |
tree | dd1c2eab045fa1d45fd298de7bddd98454157656 /Userland/Libraries/LibWeb/Forward.h | |
parent | 3dc6f0bc4718f5f54f2d18119a0f9fe457c283a8 (diff) | |
download | serenity-f8dd3e14bae66bc9b3b26f4f896d9ca43f26e274.zip |
LibWeb: Rename CSS::StyleResolver => StyleComputer
Resolved style is a spec concept that refers to the weird mix of
computed style and used style reflected by getComputedStyle().
The purpose of this class is to produce the *computed* style for a given
element, so let's call it StyleComputer.
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Forward.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h index 45635fd526..1690e20646 100644 --- a/Userland/Libraries/LibWeb/Forward.h +++ b/Userland/Libraries/LibWeb/Forward.h @@ -26,7 +26,7 @@ class PropertyOwningCSSStyleDeclaration; class Screen; class Selector; class StyleProperties; -class StyleResolver; +class StyleComputer; class StyleSheet; enum class Display; |