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
Porting from https://www.w3.org/Bugs/Public/show_bug.cgi?id=25798.
We need web platform tests, and potentially a spec change, to see how many fetches get made in the following scenario:
<img>
Do browsers try to fetch again? Or do they just immediately give back the broken image?
The text was updated successfully, but these errors were encountered:
The existence of https://www.w3.org/Bugs/Public/show_bug.cgi?id=26068 and https://bugzilla.mozilla.org/show_bug.cgi?id=528448 indicates that they do cache such broken images and immediately fire onerror again. So likely closing this just requires writing tests. Let's be sure to include the onerror recursion test case mentioned in that bug (with some limit like 100 retries).
Sorry, something went wrong.
If it's web compatible it seems nice to break the onerror recusion at least if src is set to the same value as the previous value.
src
No branches or pull requests
Porting from https://www.w3.org/Bugs/Public/show_bug.cgi?id=25798.
We need web platform tests, and potentially a spec change, to see how many fetches get made in the following scenario:
<img>
for the same URL is inserted into the documentDo browsers try to fetch again? Or do they just immediately give back the broken image?
The text was updated successfully, but these errors were encountered: