Link to test: http://nontroppo.org/timer/Hixie_DOM.html

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The biggest issue I saw was the index
testIndexfunction which in your screenshot takes just over 8 seconds in IE9. Which is copied below for reference.Note that
divsis an array with 10000 indexes.There are quiet a few things going on in this function and I think the slow down happens because browsers other than IE have optimized these types of DOM manipulations and calculation caching. I think part of the problem is that this function, unlike all the others, adds a copy of what it finds to the
divsarray. So it crawls the DOM, copies the object it finds to an array. IE has never been terribly fast when crawling the DOM. Try the following and see what the difference is.That may speed things up.