Explorar el Código

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 hace 2 años
padre
commit
8c50d5d248
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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))
         return TRY(parse_rem_function(function));
 
-    dbgln_if(CSS_PARSER_DEBUG, "We didn't implement `{}` function yet", function.name());
     return nullptr;
 }