diff options
Diffstat (limited to 'components/script/dom/htmlquoteelement.rs')
-rw-r--r-- | components/script/dom/htmlquoteelement.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/components/script/dom/htmlquoteelement.rs b/components/script/dom/htmlquoteelement.rs index f6f42dc4231..acd8c3521be 100644 --- a/components/script/dom/htmlquoteelement.rs +++ b/components/script/dom/htmlquoteelement.rs @@ -2,13 +2,14 @@ * 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, Prefix}; +use js::rust::HandleObject; + use crate::dom::bindings::root::DomRoot; use crate::dom::document::Document; use crate::dom::htmlelement::HTMLElement; use crate::dom::node::Node; -use dom_struct::dom_struct; -use html5ever::{LocalName, Prefix}; -use js::rust::HandleObject; #[dom_struct] pub struct HTMLQuoteElement { |