aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/animationevent.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/animationevent.rs')
-rw-r--r--components/script/dom/animationevent.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/animationevent.rs b/components/script/dom/animationevent.rs
index 648ed52690f..e57cb03c7d0 100644
--- a/components/script/dom/animationevent.rs
+++ b/components/script/dom/animationevent.rs
@@ -32,7 +32,7 @@ impl AnimationEvent {
AnimationEvent {
event: Event::new_inherited(),
animation_name: Atom::from(init.animationName.clone()),
- elapsed_time: init.elapsedTime.clone(),
+ elapsed_time: init.elapsedTime,
pseudo_element: init.pseudoElement.clone(),
}
}
@@ -78,7 +78,7 @@ impl AnimationEventMethods for AnimationEvent {
// https://drafts.csswg.org/css-animations/#interface-animationevent-attributes
fn ElapsedTime(&self) -> Finite<f32> {
- self.elapsed_time.clone()
+ self.elapsed_time
}
// https://drafts.csswg.org/css-animations/#interface-animationevent-attributes