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

LibWeb: Implement Animation.updatePlaybackRate()

This commit is contained in:
Matthew Olsson 2024-02-10 15:55:53 -07:00 committed by Andreas Kling
parent d351389d72
commit 9ab73f2675
3 changed files with 67 additions and 1 deletions

View file

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