LibWeb: Implement CSS exp()

This commit is contained in:
stelar7 2023-05-28 11:58:30 +02:00 committed by Sam Atkins
commit 5727e276ea
Notes: sideshowbarker 2024-07-17 01:53:23 +09:00
4 changed files with 94 additions and 0 deletions

View file

@ -306,6 +306,7 @@ private:
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<OwnPtr<CalculationNode>> parse_exp_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>&);