LibWeb: Remove TimingFunction in favor of EasingStyleValue::Function

Now that EasingStyleValue is a lot nicer to use, there isn't much reason
to keep TimingFunction around.
This commit is contained in:
Matthew Olsson 2024-06-14 21:50:25 -07:00 committed by Andreas Kling
commit 7950992fc2
Notes: sideshowbarker 2024-07-16 20:05:14 +09:00
11 changed files with 189 additions and 302 deletions

View file

@ -762,7 +762,6 @@ WebIDL::ExceptionOr<JS::NonnullGCPtr<KeyframeEffect>> KeyframeEffect::construct_
effect->m_playback_direction = source->m_playback_direction;
// - timing function.
effect->m_easing_function = source->m_easing_function;
effect->m_timing_function = source->m_timing_function;
return effect;