We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the proto-spec, the fallback is created from url's path[0], but this doesn't contain fragment/query.
So std:none|https://example.com/foo.js?bar#baz is resolved to https://example.com/foo.js, not https://example.com/foo.js?bar#baz.
std:none|https://example.com/foo.js?bar#baz
https://example.com/foo.js
https://example.com/foo.js?bar#baz
The text was updated successfully, but these errors were encountered:
Fix accidental deletion of queries and fragments from the fallback
2e63311
Closes #19. This technique is inspired by the data: URL processor's initial steps: https://fetch.spec.whatwg.org/commit-snapshots/7307d282dd7d1293d5697d63f73522007849e0db/#data-url-processor.
496a7a2
Closes #19. This technique is inspired by the data: URL processor's initial steps: https://fetch.spec.whatwg.org/commit-snapshots/7307d282dd7d1293d5697d63f73522007849e0db/#data-url-processor. Whether or not this technique is ideal, is an open question. See whatwg/url#385.
domenic
No branches or pull requests
In the proto-spec, the fallback is created from url's path[0], but this doesn't contain fragment/query.
So
std:none|https://example.com/foo.js?bar#baz
is resolved tohttps://example.com/foo.js
, nothttps://example.com/foo.js?bar#baz
.The text was updated successfully, but these errors were encountered: