window === window.top false in IE8, thus late ready...

window === window.top false in IE8, thus late ready...


Hi all, in IE8
window === window.top
is false, whereas
window == window.top
evaluates to true. Because of this the ready event will always rely on
document's onreadystatechange event instead of using Diego Perini's
doScroll trick, see line 833 in event.js. I assume his trick is better
in terms if "earliness".
Can somebody please confirm this? Or is it that we want to rely on the
event in IE8?
--Klaus