diff options
Diffstat (limited to 'components/script/dom/formdata.rs')
-rw-r--r-- | components/script/dom/formdata.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/formdata.rs b/components/script/dom/formdata.rs index aa889522f5e..f0283695825 100644 --- a/components/script/dom/formdata.rs +++ b/components/script/dom/formdata.rs @@ -2,6 +2,12 @@ * 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 html5ever::LocalName; +use js::rust::HandleObject; +use script_traits::serializable::BlobImpl; + +use super::bindings::trace::NoTrace; use crate::dom::bindings::cell::DomRefCell; use crate::dom::bindings::codegen::Bindings::FormDataBinding::FormDataMethods; use crate::dom::bindings::codegen::UnionTypes::FileOrUSVString; @@ -15,12 +21,6 @@ use crate::dom::blob::Blob; use crate::dom::file::File; use crate::dom::globalscope::GlobalScope; use crate::dom::htmlformelement::{FormDatum, FormDatumValue, HTMLFormElement}; -use dom_struct::dom_struct; -use html5ever::LocalName; -use js::rust::HandleObject; -use script_traits::serializable::BlobImpl; - -use super::bindings::trace::NoTrace; #[dom_struct] pub struct FormData { |