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

LibWeb: Implement CSS pow()

This commit is contained in:
stelar7 2023-05-28 11:26:42 +02:00 committed by Sam Atkins
parent 8ef25989b6
commit 9aed8ec7f0
4 changed files with 136 additions and 2 deletions

View file

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