Browse Source

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.
Sam Atkins 2 years ago
parent
commit
8c50d5d248
1 changed files with 0 additions and 1 deletions
  1. 0 1
      Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp

+ 0 - 1
Userland/Libraries/LibWeb/CSS/Parser/Parser.cpp

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