1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:27:44 +00:00

LibWeb: Implement missing members of AnimationEffect.getComputedTiming()

This commit is contained in:
Matthew Olsson 2024-02-04 17:22:09 -07:00 committed by Andreas Kling
parent 360082544c
commit a7727215a6

View file

@ -83,12 +83,11 @@ ComputedEffectTiming AnimationEffect::get_computed_timing() const
.easing = m_easing_function, .easing = m_easing_function,
}, },
// FIXME: end_time(),
0.0, active_duration(),
0.0, local_time(),
0.0, transformed_progress(),
0.0, current_iteration(),
0.0,
}; };
} }