WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED DUPLICATE of
bug 30303
Bug 31922
<img>/<script>/<link> tags with src=""/href="" cause request to server
https://bugs.webkit.org/show_bug.cgi?id=31922
Summary
<img>/<script>/<link> tags with src=""/href="" cause request to server
Nicholas C. Zakas
Reported
2009-11-26 17:51:17 PST
Chrome/Safari makes another request to the page when encountering: <img src=""> <script src=""> <link href=""> For example, if the page is hosted at
http://www.example.com/dir/mypage.htm
, each of these cause another request to be made to
http://www.example.com/dir/mypage.htm
. This seems like a serious bug that has the potential to do a lot of damage to servers. Example page: <html> <head> <title>Bad Image</title> </head> <body> <img src=""> </body> </html> Reproducible: Always Steps to Reproduce: 1. Create a page with one of the offending patterns. 2. Load the page while watching HTTP traffic. Actual Results: Observe that there are multiple requests to the same page. Expected Results: There should be only one request to the specified page. Note: Opera doesn't fire a request under any of these circumstances and Internet Explorer only fires a request for <img src="">, but not for the others. Firefox behaves the same as Safari/Chrome.
Attachments
Add attachment
proposed patch, testcase, etc.
Alexey Proskuryakov
Comment 1
2009-11-26 20:56:11 PST
Why do you think it's a bug? It's exactly what the page author asked for. What kind of damage can this do to servers? Anyway, marking as duplicate. *** This bug has been marked as a duplicate of
bug 30303
***
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug