I know everyone who reads the question will think “Firebug!” right away. Maybe some will think “YSlow!” and “Google Page Speed!”
While I really like these tools, I’m more concerned with how the quickly the page will render in IE 6/7/8. All of the above tools require Firefox. That’s all fine and you can definitely test the underlying speed of getting the page to the browser but what about when it comes to actually rendering the page?
I haven’t seen any really good answers on how to test optimization at the browser level. How do you write performance tests for HTML/JS across difference browsers?
I am not sure it is a useful endeavor to optimize for only one vendor:
different between IE6 and IE8, so
already that is like two different
browsers
are standard across browsers (put
javascript at bottom so you don’t
block page loads, move javascript to
external file, use multiple hostnames
for images etc. to take advantage of
parallel loading, don’t use tables
for overall layout, make sure caching
headers are correct, etc.)