Remove TransitionProperty::All

This commit is contained in:
Anthony Ramine 2018-02-26 10:41:21 +01:00
parent f3fe99bcb2
commit e2a6d07dad
4 changed files with 15 additions and 49 deletions

View file

@ -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
}
}
}