mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Allow calc()
values in steps()
easing functions
This commit is contained in:
parent
21b531598d
commit
c5a3eaaf45
Notes:
github-actions[bot]
2025-06-18 06:58:22 +00:00
Author: https://github.com/tcl3
Commit: c5a3eaaf45
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5123
Reviewed-by: https://github.com/gmta ✅
8 changed files with 177 additions and 27 deletions
|
@ -75,7 +75,7 @@ EffectTiming AnimationEffect::get_timing() const
|
|||
.iterations = m_iteration_count,
|
||||
.duration = m_iteration_duration,
|
||||
.direction = m_playback_direction,
|
||||
.easing = m_timing_function.to_string(),
|
||||
.easing = m_timing_function.to_string(CSS::SerializationMode::Normal),
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -110,7 +110,7 @@ ComputedEffectTiming AnimationEffect::get_computed_timing() const
|
|||
.iterations = m_iteration_count,
|
||||
.duration = duration,
|
||||
.direction = m_playback_direction,
|
||||
.easing = m_timing_function.to_string(),
|
||||
.easing = m_timing_function.to_string(CSS::SerializationMode::Normal),
|
||||
},
|
||||
|
||||
end_time(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue