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

LibWeb: Implement CSS log()

This commit is contained in:
stelar7 2023-05-28 11:53:57 +02:00 committed by Sam Atkins
parent fa37bb8b76
commit 6dde49404a
4 changed files with 130 additions and 0 deletions

View file

@ -305,6 +305,7 @@ private:
ErrorOr<OwnPtr<CalculationNode>> parse_pow_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_sqrt_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_hypot_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_log_function(Function const&);
ErrorOr<RefPtr<StyleValue>> parse_dimension_value(ComponentValue const&);
ErrorOr<RefPtr<StyleValue>> parse_integer_value(TokenStream<ComponentValue>&);
ErrorOr<RefPtr<StyleValue>> parse_number_value(TokenStream<ComponentValue>&);