1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:37:45 +00:00

LibWeb: Add new UnresolvedStyleValue class

This represents a property value that hasn't been converted to a
"proper" StyleValue yet. That is, it's either a custom property's value,
or a value that includes `var()` references, (or both!) since neither of
those can be fully resolved at parse time.
This commit is contained in:
Sam Atkins 2021-12-03 12:28:14 +00:00 committed by Andreas Kling
parent d2f9d2fe51
commit 000fb5a70d
3 changed files with 45 additions and 0 deletions

View file

@ -67,6 +67,7 @@ class StyleValueList;
class Supports;
class TextDecorationStyleValue;
class TransformationStyleValue;
class UnresolvedStyleValue;
class UnsetStyleValue;
}