typo in ready event since null !== undefined

typo in ready event since null !== undefined

AFAIK top window frameElement returns null and not undefined, as is for document.body when not present yet.
Moreover we can use the JavaScript weird case where null == undefined but while null is static, undefined can be redefined or in any case it needs to be discovered in the scope chain.
On line 857 of this event.js
<a href="http://github.com/jquery/jquery/blob/master/src/event.js">http://github.com/jquery/jquery/blob/master/src/event.js</a>
I can spot this:
    <span class="nx">toplevel</span> <span class="o">=</span> <span class="nb">window</span><span class="p">.</span><span class="nx">frameElement</span> <span class="o">===</span> <span class="kc">undefined</span>;
In few words and at least in my IE8 that doScroll try/catch is never performed at all since the condition
    if( <span class="nb">document</span><span class="p">.</span><span class="nx">documentElement</span><span class="p">.</span><span class="nx">doScroll</span> <span class="o">&&</span> <span class="nx">toplevel)
cannot be true.
Is that file part of the release? I did not check but you can quickly fix via
</span><span class="nx">    toplevel</span> <span class="o">=</span> <span class="nb">window</span><span class="p">.</span><span class="nx">frameElement</span> == null<span class="kc"></span>;
Regards


--