diff options
Diffstat (limited to 'components/script/dom/audiotracklist.rs')
-rw-r--r-- | components/script/dom/audiotracklist.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/audiotracklist.rs b/components/script/dom/audiotracklist.rs index 6a7fd3b4ebb..27311de360b 100644 --- a/components/script/dom/audiotracklist.rs +++ b/components/script/dom/audiotracklist.rs @@ -2,6 +2,8 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +use dom_struct::dom_struct; + use crate::dom::audiotrack::AudioTrack; use crate::dom::bindings::cell::DomRefCell; use crate::dom::bindings::codegen::Bindings::AudioTrackListBinding::AudioTrackListMethods; @@ -14,7 +16,6 @@ use crate::dom::eventtarget::EventTarget; use crate::dom::htmlmediaelement::HTMLMediaElement; use crate::dom::window::Window; use crate::task_source::TaskSource; -use dom_struct::dom_struct; #[dom_struct] pub struct AudioTrackList { |