I'm fetching dynamic images from a server with javascript, setting the src attribute of img tags. I prefetch the images by creating img tags that aren't visible, waiting for all the load events, then setting the src on the visible img tags.
This works great for a smooth update of all images, and works reliably on all browsers except firefox. Firefox will, very occasionally, paint only part of an image. The rest of the img element is left blank. The new image is fully loaded in cache: anything that triggers a re-paint will cause the whole image to appear w/o another request to the server. We've seen this with multiple versions of ff.
Anyone know 1) how we're triggering this, or 2) how to work around it?