LibWeb: Implement CSS atan2()

This commit is contained in:
stelar7 2023-05-28 11:19:10 +02:00 committed by Sam Atkins
commit a9a62ad8c9
Notes: sideshowbarker 2024-07-17 07:25:39 +09:00
4 changed files with 126 additions and 0 deletions

View file

@ -301,6 +301,7 @@ private:
ErrorOr<OwnPtr<CalculationNode>> parse_asin_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_acos_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_atan_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_atan2_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>&);