summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2023-03-17 19:32:40 +0100
committerAndreas Kling <kling@serenityos.org>2023-03-18 00:26:19 +0100
commit062b8e59575c056d87dd8f01fab8c7a41f63d9f0 (patch)
treef1d0c4ebfb2c0d8d5f6159e12921e77a50403b9c /Userland/Libraries
parent9ff01723ba52d5ddcfa2f74167ae723d83d7520f (diff)
downloadserenity-062b8e59575c056d87dd8f01fab8c7a41f63d9f0.zip
LibWeb: Print unimplemented calc() expressions in the debug log
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibWeb/CSS/StyleComputer.cpp2
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;
}
}