[whatwg/url] Non-special schema URL behaviors differently... (#526)

Given `new URL("db://x/y/z")`.

Chrome, Firefox, Edge:
```js
pathname: "//x/y/z",
```
NodeJS:
```js
hostname: 'x',
pathname: '/y/z',
```
-----------------------------------------

Given `new URL("file:x/y/z")`.

Chrome, Edge:
```js
host: "x"
pathname: "/y/z"
```

Firefox, NodeJS:
```js
pathname: "/x/y/z"
```

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

Received on Thursday, 11 June 2020 04:05:20 UTC