diff options
author | Andreas Kling <kling@serenityos.org> | 2021-09-12 20:09:24 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-12 20:44:50 +0200 |
commit | a72fd787132f4600ee42a152bbb5b7337dc4da94 (patch) | |
tree | 12889dea85b5e54573d16525b804da07edd5dd1c | |
parent | 8b27bc078c51e820f2feaeb46667b4e0ac8a3a57 (diff) | |
download | serenity-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.cpp | 1 |
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 {}; } } |