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

LibWeb: Implement AnimationEffect's active_boundary time getters

This commit is contained in:
Matthew Olsson 2023-11-04 11:30:59 -07:00 committed by Andreas Kling
parent baf5220212
commit 6a9c03482f
2 changed files with 17 additions and 0 deletions

View file

@ -98,6 +98,9 @@ public:
Optional<double> local_time() const;
double active_duration() const;
double before_active_boundary_time() const;
double after_active_boundary_time() const;
protected:
AnimationEffect(JS::Realm&);