From 9636ef7be7981eb2541510186822e1385f362f8c Mon Sep 17 00:00:00 2001 From: Brian Birtles Date: Fri, 26 Apr 2019 00:47:40 +0000 Subject: [PATCH] style: Allow animating the 'all' property from Web Animations. Differential Revision: https://phabricator.services.mozilla.com/D28763 --- components/style/properties/data.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/style/properties/data.py b/components/style/properties/data.py index b20a8deaaea..7a96402c4a1 100644 --- a/components/style/properties/data.py +++ b/components/style/properties/data.py @@ -400,8 +400,6 @@ class Shorthand(object): and allowed_in_keyframe_block != "False" def get_animatable(self): - if self.ident == "all": - return False for sub in self.sub_properties: if sub.animatable: return True