summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-09-12 20:09:24 +0200
committerAndreas Kling <kling@serenityos.org>2021-09-12 20:44:50 +0200
commita72fd787132f4600ee42a152bbb5b7337dc4da94 (patch)
tree12889dea85b5e54573d16525b804da07edd5dd1c
parent8b27bc078c51e820f2feaeb46667b4e0ac8a3a57 (diff)
downloadserenity-a72fd787132f4600ee42a152bbb5b7337dc4da94.zip
LibWeb: Log a FIXME when unimplemented computed style is requested
This will help us know which properties to compute next. :^)
-rw-r--r--Userland/Libraries/LibWeb/CSS/ComputedCSSStyleDeclaration.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/ComputedCSSStyleDeclaration.cpp b/Userland/Libraries/LibWeb/CSS/ComputedCSSStyleDeclaration.cpp
index 2eb28c7021..90515db7c3 100644
--- a/Userland/Libraries/LibWeb/CSS/ComputedCSSStyleDeclaration.cpp
+++ b/Userland/Libraries/LibWeb/CSS/ComputedCSSStyleDeclaration.cpp
@@ -98,6 +98,7 @@ Optional<StyleProperty> ComputedCSSStyleDeclaration::property(PropertyID propert
};
}
default:
+ dbgln("FIXME: Computed style for the '{}' property was requested", string_from_property_id(property_id));
return {};
}
}