mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 22:55:23 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user