diff options
Diffstat (limited to 'components/script/dom/userscripts.rs')
-rw-r--r-- | components/script/dom/userscripts.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/dom/userscripts.rs b/components/script/dom/userscripts.rs index 1180b0c8279..bbd0e2f45a8 100644 --- a/components/script/dom/userscripts.rs +++ b/components/script/dom/userscripts.rs @@ -2,10 +2,10 @@ * 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::inheritance::Castable; -use dom::globalscope::GlobalScope; -use dom::htmlheadelement::HTMLHeadElement; -use dom::node::Node; +use crate::dom::bindings::inheritance::Castable; +use crate::dom::globalscope::GlobalScope; +use crate::dom::htmlheadelement::HTMLHeadElement; +use crate::dom::node::Node; use js::jsval::UndefinedValue; use servo_config::opts; use std::fs::{File, read_dir}; |