1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:37:36 +00:00

LibWeb: Implement Animation::set_timeline

This commit is contained in:
Matthew Olsson 2023-11-04 12:01:11 -07:00 committed by Andreas Kling
parent 67fcee6fca
commit 4889f53880
2 changed files with 24 additions and 2 deletions

View file

@ -70,6 +70,9 @@ private:
// https://www.w3.org/TR/web-animations-1/#animation-start-time
Optional<double> m_start_time {};
// https://www.w3.org/TR/web-animations-1/#animation-hold-time
Optional<double> m_hold_time {};
// https://www.w3.org/TR/web-animations-1/#playback-rate
double m_playback_rate { 1.0 };