summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/url/script-tests/segments.js
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/fast/url/script-tests/segments.js')
-rw-r--r--LayoutTests/fast/url/script-tests/segments.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/LayoutTests/fast/url/script-tests/segments.js b/LayoutTests/fast/url/script-tests/segments.js
index c621da1..a826703 100644
--- a/LayoutTests/fast/url/script-tests/segments.js
+++ b/LayoutTests/fast/url/script-tests/segments.js
@@ -68,6 +68,19 @@ cases = [
["http://[2001::1]", ["http:","[2001::1]","0","/","",""]],
["http://[2001::1]:80", ["http:","[2001::1]","0","/","",""]],
["http://[[::]]", [":","","0","","",""]],
+ ["http:/example.com/", ["http:","example.org","0","/example.com/","",""]],
+ ["ftp:/example.com/", ["ftp:","example.com","0","/","",""]],
+ ["https:/example.com/", ["https:","example.com","0","/","",""]],
+ ["madeupscheme:/example.com/", ["madeupscheme:","","0","/example.com/","",""]],
+ ["file:/example.com/", ["file:","","0","/example.com/","",""]],
+ ["fops:/example.com/", ["fops:","","0","/example.com/","",""]],
+ ["gopher:/example.com/", ["gopher:","example.com","0","/","",""]],
+ ["ws:/example.com/", ["ws:","example.com","0","/","",""]],
+ ["wss:/example.com/", ["wss:","example.com","0","/","",""]],
+ ["data:/example.com/", ["data:","","0","/example.com/","",""]],
+ ["javascript:/example.com/", ["javascript:","","0","/example.com/","",""]],
+ ["mailto:/example.com/", ["mailto:","","0","/example.com/","",""]],
+
];
var originalBaseURL = canonicalize(".");