From 162d563180f3e24efba1c033ed32bedc32b797dd Mon Sep 17 00:00:00 2001 From: Hiroyuki Ikezoe Date: Tue, 10 Apr 2018 09:32:27 +0900 Subject: [PATCH] Don't make logical properties animatable |animation_type| was renamed in 94fb839fdde, but the commit missed renaming one place. It means that some of logical properties might have been accidentally animatable. Logical properties should be animatable but we haven't yet implemented the proper Animate trait for logical properties. --- components/style/properties/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/properties/data.py b/components/style/properties/data.py index 4e257a5ea40..c0b6d255fa4 100644 --- a/components/style/properties/data.py +++ b/components/style/properties/data.py @@ -210,7 +210,7 @@ class Longhand(object): # discrete). For now, it is still non-animatable. self.animatable = False self.transitionable = False - self.animation_type = None + self.animation_value_type = None # See compute_damage for the various values this can take self.servo_restyle_damage = servo_restyle_damage