aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/urlhelper.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2014-09-20 09:12:04 -0400
committerJosh Matthews <josh@joshmatthews.net>2014-09-20 09:12:04 -0400
commit249638da8f01a66b98be857fba7755c8625480f5 (patch)
treece1d17e575db42e5d63cb09151afcf8ce5bbd85a /components/script/dom/urlhelper.rs
parentde67710934ac89de0cf21911dc57dcda7cb0fae1 (diff)
parent652d21796150631f3cbb6c00089415b1f83acc3c (diff)
downloadservo-249638da8f01a66b98be857fba7755c8625480f5.tar.gz
servo-249638da8f01a66b98be857fba7755c8625480f5.zip
Merge pull request #3400 from gilles-leblanc/issue-3279
Share code between Navigator and WorkerNavigator
Diffstat (limited to 'components/script/dom/urlhelper.rs')
-rw-r--r--components/script/dom/urlhelper.rs30
1 files changed, 30 insertions, 0 deletions
diff --git a/components/script/dom/urlhelper.rs b/components/script/dom/urlhelper.rs
new file mode 100644
index 00000000000..7394a89cce7
--- /dev/null
+++ b/components/script/dom/urlhelper.rs
@@ -0,0 +1,30 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * 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 servo_util::str::DOMString;
+use url::Url;
+
+pub struct UrlHelper;
+
+impl UrlHelper {
+ pub fn Href(url: &Url) -> DOMString {
+ url.serialize()
+ }
+
+ pub fn Search(url: &Url) -> DOMString {
+ match url.query {
+ None => "".to_string(),
+ Some(ref query) if query.as_slice() == "" => "".to_string(),
+ Some(ref query) => "?".to_string().append(query.as_slice())
+ }
+ }
+
+ pub fn Hash(url: &Url) -> DOMString {
+ match url.fragment {
+ None => "".to_string(),
+ Some(ref hash) if hash.as_slice() == "" => "".to_string(),
+ Some(ref hash) => "#".to_string().append(hash.as_slice())
+ }
+ }
+}