diff options
Diffstat (limited to 'components/script/animations.rs')
-rw-r--r-- | components/script/animations.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/animations.rs b/components/script/animations.rs index 128df043cf3..df8378a37b9 100644 --- a/components/script/animations.rs +++ b/components/script/animations.rs @@ -397,7 +397,7 @@ impl Animations { pipeline_id, event_type, node: key.node, - pseudo_element: key.pseudo_element.clone(), + pseudo_element: key.pseudo_element, property_or_animation_name: transition .property_animation .property_id() @@ -450,7 +450,7 @@ impl Animations { pipeline_id, event_type, node: key.node, - pseudo_element: key.pseudo_element.clone(), + pseudo_element: key.pseudo_element, property_or_animation_name: animation.name.to_string(), elapsed_time, }); |