In most common web browsers, are the images displayed using <image>
tags loaded by asynchronous requests?
views:
112answers:
3Do you mean does the browser wait until the image is received before rendering the rest of the page, or requesting further html?
Then generally yes, most browsers will render the HTML first while waiting for the images, on a fast link this might not be noticeable - but was on dialup.
Modern browsers can reflow the page, so they will load the images asynchronously.
Way back some browsers (like Netscape 4) could not reflow the page, so they would have to wait until they knew the size of each image until they could render the rest of the page. If you specified the width and height in each image tag they could load all images asynchronously, otherwise they had to load enough of each image to determine the size before they could continue to render the page.