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

For instance,

```js
> var m = new url.URL('file:///c%3a/%2e/a/%2e%2e/b')
undefined
> m
URL {
  href: file:///c%3a/b
  protocol: file:
  pathname: /c%3a/b
}
```

-- 
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#issuecomment-272976783

Received on Monday, 16 January 2017 22:31:15 UTC