From a72fd787132f4600ee42a152bbb5b7337dc4da94 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 12 Sep 2021 20:09:24 +0200 Subject: LibWeb: Log a FIXME when unimplemented computed style is requested This will help us know which properties to compute next. :^) --- Userland/Libraries/LibWeb/CSS/ComputedCSSStyleDeclaration.cpp | 1 + 1 file changed, 1 insertion(+) 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 ComputedCSSStyleDeclaration::property(PropertyID propert }; } default: + dbgln("FIXME: Computed style for the '{}' property was requested", string_from_property_id(property_id)); return {}; } } -- cgit v1.2.3