From a7727215a6370ae3b96c6e4dcea70b2625ced7e4 Mon Sep 17 00:00:00 2001 From: Matthew Olsson Date: Sun, 4 Feb 2024 17:22:09 -0700 Subject: [PATCH] LibWeb: Implement missing members of AnimationEffect.getComputedTiming() --- .../Libraries/LibWeb/Animations/AnimationEffect.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Userland/Libraries/LibWeb/Animations/AnimationEffect.cpp b/Userland/Libraries/LibWeb/Animations/AnimationEffect.cpp index c9fa8f5ba3..a202d2c08c 100644 --- a/Userland/Libraries/LibWeb/Animations/AnimationEffect.cpp +++ b/Userland/Libraries/LibWeb/Animations/AnimationEffect.cpp @@ -83,12 +83,11 @@ ComputedEffectTiming AnimationEffect::get_computed_timing() const .easing = m_easing_function, }, - // FIXME: - 0.0, - 0.0, - 0.0, - 0.0, - 0.0, + end_time(), + active_duration(), + local_time(), + transformed_progress(), + current_iteration(), }; }