aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/animation.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2018-02-26 10:41:21 +0100
committerAnthony Ramine <n.oxyde@gmail.com>2018-02-26 14:30:53 +0100
commite2a6d07dadeaba233a06d4820d4be7205761c754 (patch)
tree08ff42a477b6b5bf4aab682de370deb4e07d66ba /components/style/animation.rs
parentf3fe99bcb24736ee06fa8faa85b2f0d6fa159fb8 (diff)
downloadservo-e2a6d07dadeaba233a06d4820d4be7205761c754.tar.gz
servo-e2a6d07dadeaba233a06d4820d4be7205761c754.zip
Remove TransitionProperty::All
Diffstat (limited to 'components/style/animation.rs')
-rw-r--r--components/style/animation.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/components/style/animation.rs b/components/style/animation.rs
index c934d075245..ee960586be7 100644
--- a/components/style/animation.rs
+++ b/components/style/animation.rs
@@ -309,22 +309,6 @@ impl PropertyAnimation {
}
result
}
- TransitionProperty::All => {
- TransitionProperty::each(|longhand_id| {
- let animation = PropertyAnimation::from_longhand(
- longhand_id,
- timing_function,
- duration,
- old_style,
- new_style,
- );
-
- if let Some(animation) = animation {
- result.push(animation);
- }
- });
- result
- }
}
}