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
Using a :<name> token to capture the port of a URL fails if the URL is using the default port for that protocol (either explicitly or implicitly). Tested in Chrome.
// false!?!?newURLPattern('http://example.com::port').test('http://example.com:80')// works if you use a non-standard portnewURLPattern('http://example.com::port').test('http://example.com:81')// works if you use an asterisk instead of a name tokennewURLPattern('http://example.com:*').test('http://example.com:80')