LibWeb: Print unimplemented calc() expressions in the debug log

This commit is contained in:
Andreas Kling 2023-03-17 19:32:40 +01:00
commit 062b8e5957
Notes: sideshowbarker 2024-07-18 22:57:59 +09:00

View file

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