diff options
Diffstat (limited to 'components/script/dom/htmlframeelement.rs')
-rw-r--r-- | components/script/dom/htmlframeelement.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/htmlframeelement.rs b/components/script/dom/htmlframeelement.rs index 83ad119ada7..83e070c12ad 100644 --- a/components/script/dom/htmlframeelement.rs +++ b/components/script/dom/htmlframeelement.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::HTMLFrameElementBinding; -use dom::bindings::root::DomRoot; -use dom::document::Document; -use dom::htmlelement::HTMLElement; -use dom::node::Node; +use crate::dom::bindings::codegen::Bindings::HTMLFrameElementBinding; +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}; |