LibWeb: Remove misleading log message about unimplemented functions

`parse_a_calc_function_node()` only detects math functions, but
regularly encounters unrelated functions like `rgba()`. Since we now
support all the math functions, this message is just misleading spam.
This commit is contained in:
Sam Atkins 2023-06-30 14:38:46 +01:00 committed by Sam Atkins
parent d0808e5d94
commit 8c50d5d248

View file

@ -4200,7 +4200,6 @@ ErrorOr<OwnPtr<CalculationNode>> Parser::parse_a_calc_function_node(Function con
if (function.name().equals_ignoring_ascii_case("rem"sv))
return TRY(parse_rem_function(function));
dbgln_if(CSS_PARSER_DEBUG, "We didn't implement `{}` function yet", function.name());
return nullptr;
}