Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9a313f2

Browse files
committedFeb 8, 2017
File URLs with repeated slsashes
Related links + The URL Standard change: whatwg/url#234 + The original bug report: whatwg/url#232
1 parent 82ed307 commit 9a313f2

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed
 

‎url/urltestdata.json

+43
Original file line numberDiff line numberDiff line change
@@ -5305,5 +5305,48 @@
53055305
"pathname": "joe@example.org,2001:foo/bar",
53065306
"search": "",
53075307
"hash": ""
5308+
},
5309+
"# file URLs with repeated slsashes by Daijirō Wachi",
5310+
{
5311+
"input": "file:////////",
5312+
"base": "about:blank",
5313+
"href": "file:///",
5314+
"protocol": "file:",
5315+
"username": "",
5316+
"password": "",
5317+
"host": "",
5318+
"hostname": "",
5319+
"port": "",
5320+
"pathname": "",
5321+
"search": "",
5322+
"hash": ""
5323+
},
5324+
{
5325+
"input": "file:\\\\\\\\",
5326+
"base": "about:blank",
5327+
"href": "file:///",
5328+
"protocol": "file:",
5329+
"username": "",
5330+
"password": "",
5331+
"host": "",
5332+
"hostname": "",
5333+
"port": "",
5334+
"pathname": "",
5335+
"search": "",
5336+
"hash": ""
5337+
},
5338+
{
5339+
"input": "file:////////foo/bar",
5340+
"base": "about:blank",
5341+
"href": "file:///foo/bar",
5342+
"protocol": "file:",
5343+
"username": "",
5344+
"password": "",
5345+
"host": "",
5346+
"hostname": "",
5347+
"port": "",
5348+
"pathname": "/foo/bar",
5349+
"search": "",
5350+
"hash": ""
53085351
}
53095352
]

0 commit comments

Comments
 (0)
Please sign in to comment.