diff options
Diffstat (limited to 'components/script/dom/domrect.rs')
-rw-r--r-- | components/script/dom/domrect.rs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/components/script/dom/domrect.rs b/components/script/dom/domrect.rs index cb5b3caadb9..6b149d171c0 100644 --- a/components/script/dom/domrect.rs +++ b/components/script/dom/domrect.rs @@ -2,14 +2,14 @@ * 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::DOMRectBinding; -use dom::bindings::codegen::Bindings::DOMRectBinding::DOMRectMethods; -use dom::bindings::codegen::Bindings::DOMRectReadOnlyBinding::DOMRectReadOnlyMethods; -use dom::bindings::error::Fallible; -use dom::bindings::reflector::reflect_dom_object; -use dom::bindings::root::DomRoot; -use dom::domrectreadonly::DOMRectReadOnly; -use dom::globalscope::GlobalScope; +use crate::dom::bindings::codegen::Bindings::DOMRectBinding; +use crate::dom::bindings::codegen::Bindings::DOMRectBinding::DOMRectMethods; +use crate::dom::bindings::codegen::Bindings::DOMRectReadOnlyBinding::DOMRectReadOnlyMethods; +use crate::dom::bindings::error::Fallible; +use crate::dom::bindings::reflector::reflect_dom_object; +use crate::dom::bindings::root::DomRoot; +use crate::dom::domrectreadonly::DOMRectReadOnly; +use crate::dom::globalscope::GlobalScope; use dom_struct::dom_struct; #[dom_struct] |