LibWeb: Log a FIXME when unimplemented computed style is requested

This will help us know which properties to compute next. :^)
This commit is contained in:
Andreas Kling 2021-09-12 20:09:24 +02:00
commit a72fd78713
Notes: sideshowbarker 2024-07-18 08:59:31 +09:00

View file

@ -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 {};
}
}