LibWeb: Parse the will-change property

This property provides a hint to the rendering engine about properties
that are likely to change in the near future, allowing for early
optimizations to be applied.
This commit is contained in:
Tim Ledbetter 2025-08-16 08:39:18 +01:00 committed by Sam Atkins
parent 0e4fb9ae73
commit 4f663ca6e7
Notes: github-actions[bot] 2025-08-18 11:37:59 +00:00
16 changed files with 335 additions and 2 deletions

View file

@ -490,6 +490,7 @@ private:
RefPtr<StyleValue const> parse_touch_action_value(TokenStream<ComponentValue>&);
RefPtr<StyleValue const> parse_white_space_shorthand(TokenStream<ComponentValue>&);
RefPtr<StyleValue const> parse_white_space_trim_value(TokenStream<ComponentValue>&);
RefPtr<StyleValue const> parse_will_change_value(TokenStream<ComponentValue>&);
RefPtr<StyleValue const> parse_list_of_time_values(PropertyID, TokenStream<ComponentValue>&);