1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:37:46 +00:00

LibWeb: Add Document::update_animations_and_send_events

This commit is contained in:
Matthew Olsson 2023-11-04 13:41:23 -07:00 committed by Andreas Kling
parent 9bab1a95a5
commit fe848487db
2 changed files with 73 additions and 0 deletions

View file

@ -559,6 +559,8 @@ public:
Optional<double> scheduled_event_time;
};
void append_pending_animation_event(PendingAnimationEvent const&);
void update_animations_and_send_events(Optional<double> const& timestamp);
void remove_replaced_animations();
bool ready_to_run_scripts() const { return m_ready_to_run_scripts; }