Skip to content

Commit

Permalink
Bug 1330824 - Use impl_copy_animation_value for animation-timing-func…
Browse files Browse the repository at this point in the history
…tion. r=heycam

I did forget to do it in bug 1328786.

MozReview-Commit-ID: IDpVShW6nrH
  • Loading branch information
Hiroyuki Ikezoe committed Jan 14, 2017
1 parent 2fb9a34 commit b914d41
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions components/style/properties/gecko.mako.rs
Expand Up @@ -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") %>

Expand Down

0 comments on commit b914d41

Please sign in to comment.