You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to parse a nonstandard URL protocol is very different between Deno and browsers. In particular whether the host and port get parsed out or whether everything is treated as part of the pathname.
Hmm... I think Deno implements the standard correctly here and that both Chrome and Firefox are in error. see e.g. the "Parsing: gopher://foo:443/ without base" case in web platform tests
Trying to parse a nonstandard URL protocol is very different between Deno and browsers. In particular whether the
host
andport
get parsed out or whether everything is treated as part of thepathname
.Deno, Node, Safari, Bun give something like:
Chrome, Firefox give something like:
The text was updated successfully, but these errors were encountered: