From 3ed2c6da72864dd90eaa23fa201e4f9a4efe6905 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Sat, 27 May 2023 15:33:56 +0100 Subject: [PATCH] LibWeb: Resolve appearance property --- Userland/Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp b/Userland/Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp index 22dcf4eb83..7fc4c2596d 100644 --- a/Userland/Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp +++ b/Userland/Libraries/LibWeb/CSS/ResolvedCSSStyleDeclaration.cpp @@ -241,6 +241,8 @@ ErrorOr> ResolvedCSSStyleDeclaration::style_value_for_p return TRY(IdentifierStyleValue::create(to_value_id(layout_node.computed_values().align_items()))); case PropertyID::AlignSelf: return TRY(IdentifierStyleValue::create(to_value_id(layout_node.computed_values().align_self()))); + case PropertyID::Appearance: + return TRY(IdentifierStyleValue::create(to_value_id(layout_node.computed_values().appearance()))); case PropertyID::Background: { auto maybe_background_color = property(PropertyID::BackgroundColor); auto maybe_background_image = property(PropertyID::BackgroundImage);