url
url copied to clipboard
URL Standard
I would like to amend to the goals of this spec to have the ultimate goal of becoming a **fixed** specification - including a rough time schedule to reach that...
The specification for URLSearchParams currently reads that delete should delete all pairs that have the supplied key. I think the ability to delete a specific key value pair should be...
I've had a few discussions with folks (most recently at the OpenJS World conference in Austin last week) about the possibility of exposing the IPv4/IPv6 parser included in the URL...
`URLSearchParams` is basically a `Map` and should have a `size` property. The unfortunate alternative is: ```js Array.from(url.searchParams).length ```
https://url.spec.whatwg.org/commit-snapshots/a1b789c6b6c36fcdb16311da5abd177e84151fca/#url-parsing > For each byte in buffer: > > If byte is less than 0x21 \(\!\), greater than 0x7E \(\~\), or is 0x22 \("\), 0x23 \(\#\), 0x3C \(<\), or 0x3E...
As an occasional standards-user, the lack of a succinct expression of the grammar for valid URL strings is rather frustrating. It makes it rather difficult to follow what's going on...
Wrote a letter to Unicode through their [feedback form](http://www.unicode.org/reporting.html) on July 30 with the details. Haven't heard back despite their promises that "You can expect an acknowledgement of your report...
- [ ] At least two implementers are interested (and none opposed): * … * … - [ ] [Tests](https://github.com/web-platform-tests/wpt) are written and can be reviewed and commented upon at:...
The `new URL()` constructor currently requires at least one of its arguments to be an absolute URL. ```js new URL('./page.html', 'https://site.com/help/'); // OK new URL('./page.html', '/help/'); // Uncaught TypeError: URL...
Chrome, Firefox, and Safari all agree on this behavior: `u = new URL("custom-scheme://host?initially-no-path");` `u.protocol = "https";` `u.protocol = "custom-scheme";` `u.href; // custom-scheme://host/?initially-no-path` Even though it is a little strange, I...