1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:27:35 +00:00

LibWeb: Implement CSS tan()

This commit is contained in:
stelar7 2023-05-28 00:02:43 +02:00 committed by Sam Atkins
parent 46a5efe388
commit 64f0349a9e
4 changed files with 100 additions and 0 deletions

View file

@ -297,6 +297,7 @@ private:
ErrorOr<OwnPtr<CalculationNode>> parse_sign_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_sin_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_cos_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_tan_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>&);