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

LibWeb: Implement Animation::set_playback_rate

This commit is contained in:
Matthew Olsson 2023-11-04 12:13:25 -07:00 committed by Andreas Kling
parent 749462f3df
commit 8039fe78cd
2 changed files with 40 additions and 2 deletions

View file

@ -61,6 +61,8 @@ private:
RunAsSoonAsReady,
};
double associated_effect_end() const;
void apply_any_pending_playback_rate();
WebIDL::ExceptionOr<void> silently_set_current_time(Optional<double>);