[whatwg/url] Unclear behavior of path scheme for special URL (#275)

>From these lines: [w3c/web-platform-tests/url/setters_tests.json](https://github.com/w3c/web-platform-tests/blob/17966a23f1a561e5e0cd86232b3655c47240c9d5/url/setters_tests.json#L229-L236). On Chrome, the pathname displays `//example.com`, but `whatwg-url` displays empty, and `node` displays `/`. 
```js
var url = new URL('ssh://example.com')
console.log(url.pathname)
``` 

What should we expect as a spec? I think it should be `/` as like the other scheme.

-- 
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/275

Received on Saturday, 18 March 2017 13:32:55 UTC