aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/urlhelper.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/urlhelper.rs')
-rw-r--r--components/script/dom/urlhelper.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/components/script/dom/urlhelper.rs b/components/script/dom/urlhelper.rs
index 834d7e20d18..03a3c3150ae 100644
--- a/components/script/dom/urlhelper.rs
+++ b/components/script/dom/urlhelper.rs
@@ -2,11 +2,13 @@
* 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 crate::dom::bindings::str::USVString;
-use servo_url::ServoUrl;
use std::borrow::ToOwned;
+
+use servo_url::ServoUrl;
use url::quirks;
+use crate::dom::bindings::str::USVString;
+
#[derive(MallocSizeOf)]
pub struct UrlHelper;