1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:57:45 +00:00

LibWeb: Implement AnimationEffect's transformed_progress helper

This commit is contained in:
Matthew Olsson 2023-11-04 11:55:16 -07:00 committed by Andreas Kling
parent 611faf3645
commit 0d3c8a1cd9
2 changed files with 26 additions and 0 deletions

View file

@ -125,6 +125,7 @@ public:
AnimationDirection current_direction() const;
Optional<double> simple_iteration_progress() const;
Optional<double> current_iteration() const;
Optional<double> transformed_progress() const;
protected:
AnimationEffect(JS::Realm&);