summaryrefslogtreecommitdiffstats
path: root/servo/components/style/animation.rs
diff options
context:
space:
mode:
Diffstat (limited to 'servo/components/style/animation.rs')
-rw-r--r--servo/components/style/animation.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/servo/components/style/animation.rs b/servo/components/style/animation.rs
index b865120aba..1cab5da84e 100644
--- a/servo/components/style/animation.rs
+++ b/servo/components/style/animation.rs
@@ -1273,9 +1273,10 @@ pub fn start_transitions_if_applicable(
) -> PropertyDeclarationIdSet {
let mut properties_that_transition = PropertyDeclarationIdSet::default();
for transition in new_style.transition_properties() {
- let physical_property = PropertyDeclarationId::Longhand(
- transition.longhand_id.to_physical(new_style.writing_mode),
- );
+ let physical_property = transition
+ .property
+ .as_borrowed()
+ .to_physical(new_style.writing_mode);
if properties_that_transition.contains(physical_property) {
continue;
}