[whatwg/url] Should 'C%3A' or 'C%7C' be interpreted as 'C:' and 'C|'? (#210)

Given the examples `new URL('file:///C%3A/a/b/c')` and `new URL('file:///C%7C/a/b/c')`, the parsed pathnames do not unescape the `%3A` (`:`) and `%7C` (`|`). Technically speaking, those should be considered valid Windows drive letters. Currently neither the Node.js, Firefox, or Chrome impls decode the %-encoded `:` and `|` characters.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/url/issues/210

Received on Monday, 16 January 2017 22:24:26 UTC