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
commit 000fb5a70d
Notes: sideshowbarker 2024-07-17 23:02:53 +09:00
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;
}