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

LibWeb: Implement Animation.reverse()

This commit is contained in:
Matthew Olsson 2024-02-10 16:00:08 -07:00 committed by Andreas Kling
parent 9ab73f2675
commit 2dd5d0c310
3 changed files with 31 additions and 1 deletions

View file

@ -76,6 +76,7 @@ public:
WebIDL::ExceptionOr<void> play_an_animation(AutoRewind);
WebIDL::ExceptionOr<void> pause();
WebIDL::ExceptionOr<void> update_playback_rate(double);
WebIDL::ExceptionOr<void> reverse();
void persist();
Optional<double> convert_an_animation_time_to_timeline_time(Optional<double>) const;