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:
Hiroyuki Ikezoe 2017-01-14 11:35:58 +09:00
parent 2fb9a345d6
commit b914d41d52

View file

@ -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") %>