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

LibWeb: Implement CSS rem()

This commit is contained in:
stelar7 2023-05-27 19:08:07 +02:00 committed by Sam Atkins
parent dc042662d1
commit d6db924d47
4 changed files with 127 additions and 0 deletions

View file

@ -309,6 +309,7 @@ private:
ErrorOr<OwnPtr<CalculationNode>> parse_exp_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_round_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_mod_function(Function const&);
ErrorOr<OwnPtr<CalculationNode>> parse_rem_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>&);