1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

LibWeb: Implement CSS acos()

This commit is contained in:
stelar7 2023-05-28 11:00:35 +02:00 committed by Sam Atkins
parent 708b5ef447
commit 784e1cfb72
4 changed files with 100 additions and 0 deletions

View file

@ -299,6 +299,7 @@ private:
ErrorOr<OwnPtr<CalculationNode>> parse_cos_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_tan_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_asin_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_acos_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>&);