diff options
author | Josh Matthews <josh@joshmatthews.net> | 2023-05-28 23:25:41 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2023-05-28 23:54:02 -0400 |
commit | 0e8ac3fdac83227d4bbc8d1d74ea021fa627280a (patch) | |
tree | b26c252a84a3e5e67158ef65385979fdb1174784 /components/script/dom/animationevent.rs | |
parent | dbff26bce05d404027ef5bbfd85fb5995e4726bc (diff) | |
download | servo-0e8ac3fdac83227d4bbc8d1d74ea021fa627280a.tar.gz servo-0e8ac3fdac83227d4bbc8d1d74ea021fa627280a.zip |
Formatting.
Diffstat (limited to 'components/script/dom/animationevent.rs')
-rw-r--r-- | components/script/dom/animationevent.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/components/script/dom/animationevent.rs b/components/script/dom/animationevent.rs index 1a5179c7ebe..d41fff988b5 100644 --- a/components/script/dom/animationevent.rs +++ b/components/script/dom/animationevent.rs @@ -39,7 +39,12 @@ impl AnimationEvent { Self::new_with_proto(window, None, type_, init) } - fn new_with_proto(window: &Window, proto: Option<HandleObject>, type_: Atom, init: &AnimationEventInit) -> DomRoot<AnimationEvent> { + fn new_with_proto( + window: &Window, + proto: Option<HandleObject>, + type_: Atom, + init: &AnimationEventInit, + ) -> DomRoot<AnimationEvent> { let ev = reflect_dom_object2(Box::new(AnimationEvent::new_inherited(init)), window, proto); { let event = ev.upcast::<Event>(); |