diff options
author | Andreas Kling <kling@serenityos.org> | 2023-03-17 19:32:40 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-03-18 00:26:19 +0100 |
commit | 062b8e59575c056d87dd8f01fab8c7a41f63d9f0 (patch) | |
tree | f1d0c4ebfb2c0d8d5f6159e12921e77a50403b9c /Userland/Libraries | |
parent | 9ff01723ba52d5ddcfa2f74167ae723d83d7520f (diff) | |
download | serenity-062b8e59575c056d87dd8f01fab8c7a41f63d9f0.zip |
LibWeb: Print unimplemented calc() expressions in the debug log
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/StyleComputer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp b/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp index ef16fcb21b..ff6f1bd7b5 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp +++ b/Userland/Libraries/LibWeb/CSS/StyleComputer.cpp @@ -751,7 +751,7 @@ bool StyleComputer::expand_unresolved_values(DOM::Element& element, StringView p continue; } default: - dbgln("FIXME: Unimplement calc() expansion in StyleComputer"); + dbgln("FIXME: Unimplemented calc() expansion: {}", calc_value->to_string()); break; } } |