1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57: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,
},
// FIXME:
0.0,
0.0,
0.0,
0.0,
0.0,
end_time(),
active_duration(),
local_time(),
transformed_progress(),
current_iteration(),
};
}