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 current bug we need to fix is that parsing /foo/bar against file:/path/to/docroot/index.html currently gives file:/foo/bar, whereas it should give file:///foo/bar.
In fact, just parsing file:/path/to/docroot/index.html should give back file:///path/to/docroot/index.html.
The complication here is that we have no tests for href serialization, which is horrible.
The current bug we need to fix is that parsing
/foo/bar
againstfile:/path/to/docroot/index.html
currently givesfile:/foo/bar
, whereas it should givefile:///foo/bar
.In fact, just parsing
file:/path/to/docroot/index.html
should give backfile:///path/to/docroot/index.html
.The complication here is that we have no tests for href serialization, which is horrible.
Related: whatwg/url#52 web-platform-tests/wpt#2038
The text was updated successfully, but these errors were encountered: