mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Bug 1330824 - Use impl_copy_animation_value for animation-timing-function. r=heycam
I did forget to do it in bug 1328786. MozReview-Commit-ID: IDpVShW6nrH
This commit is contained in:
parent
2fb9a345d6
commit
b914d41d52
1 changed files with 1 additions and 7 deletions
|
@ -1432,17 +1432,11 @@ fn static_assert() {
|
|||
}
|
||||
}
|
||||
${impl_animation_count('timing_function', 'TimingFunction')}
|
||||
${impl_copy_animation_value('timing_function', 'TimingFunction')}
|
||||
pub fn animation_timing_function_at(&self, index: usize)
|
||||
-> longhands::animation_timing_function::computed_value::SingleComputedValue {
|
||||
self.gecko.mAnimations[index].mTimingFunction.into()
|
||||
}
|
||||
pub fn copy_animation_timing_function_from(&mut self, other: &Self) {
|
||||
unsafe { self.gecko.mAnimations.ensure_len(other.gecko.mAnimations.len()) };
|
||||
self.gecko.mAnimationTimingFunctionCount = other.gecko.mAnimationTimingFunctionCount;
|
||||
for (index, animation) in self.gecko.mAnimations.iter_mut().enumerate() {
|
||||
animation.mTimingFunction = other.gecko.mAnimations[index].mTimingFunction;
|
||||
}
|
||||
}
|
||||
|
||||
<% scroll_snap_type_keyword = Keyword("scroll-snap-type", "none mandatory proximity") %>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue