1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:18:11 +00:00

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

This commit is contained in:
Andreas Kling 2023-03-17 19:32:40 +01:00
parent 9ff01723ba
commit 062b8e5957

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