diff options
Diffstat (limited to 'components/script/dom/htmlbrelement.rs')
-rw-r--r-- | components/script/dom/htmlbrelement.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/htmlbrelement.rs b/components/script/dom/htmlbrelement.rs index 87e5c024901..fed712cabba 100644 --- a/components/script/dom/htmlbrelement.rs +++ b/components/script/dom/htmlbrelement.rs @@ -2,11 +2,11 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -use dom::bindings::codegen::Bindings::HTMLBRElementBinding; -use dom::bindings::root::DomRoot; -use dom::document::Document; -use dom::htmlelement::HTMLElement; -use dom::node::Node; +use crate::dom::bindings::codegen::Bindings::HTMLBRElementBinding; +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}; |