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

LibWeb: Add a few Animation/AnimationEffect getters

This commit is contained in:
Matthew Olsson 2024-02-03 18:54:49 -07:00 committed by Andreas Kling
parent 06a8674eec
commit 145ae54718
5 changed files with 55 additions and 1 deletions

View file

@ -104,6 +104,9 @@ public:
double active_duration() const;
Optional<double> active_time() const;
Optional<double> active_time_using_fill(Bindings::FillMode) const;
bool is_in_play() const;
bool is_current() const;
bool is_in_effect() const;
double before_active_boundary_time() const;