If i have a page with 50 div elements, with 50 seperate css classes, and each css class has the line:
background:#000 url(curve_red/circle.png) no-repeat 0 0;
Then Firefox (3.5) will make 50 http requests for the same file (verified using firebug).
However IE will see this repetition and not attempt to redownload the file after each request (verified using fiddler).
Is this a bug or can anyone offer any insight as to why firefox does this?