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
The test cases and the spec have different behaviour here, I think...
new URL("/some/path", "http://user@example.org/smth").href === "http://user@example.org/some/path" according to tests, but an implementation according to spec leads to "http://example.org/some/path".
Fixes are needed (at least) in the RELATIVE state and the RELATIVE_SLASH state. Looks like this in code. Example failures from the tests here.
The text was updated successfully, but these errors were encountered:
The test cases and the spec have different behaviour here, I think...
new URL("/some/path", "http://user@example.org/smth").href === "http://user@example.org/some/path"
according to tests, but an implementation according to spec leads to"http://example.org/some/path"
.Fixes are needed (at least) in the
RELATIVE
state and theRELATIVE_SLASH
state. Looks like this in code. Example failures from the tests here.The text was updated successfully, but these errors were encountered: