]> source.dussan.org Git - jquery.git/commitdiff
Landing pull request 401. Nulling all elements created in support.js; Fixes #9471.
authorrwldrn <waldron.rick@gmail.com>
Tue, 7 Jun 2011 03:54:17 +0000 (23:54 -0400)
committertimmywil <tim.willison@thisismedium.com>
Tue, 7 Jun 2011 03:54:17 +0000 (23:54 -0400)
More Details:
 - https://github.com/jquery/jquery/pull/401
 - http://bugs.jquery.com/ticket/9471

src/support.js

index 42108dedda4595eeccf49cf13652fc72e3eca77d..882b84a2f51b89162e2592887803942535ab35b1 100644 (file)
@@ -245,7 +245,7 @@ jQuery.support = (function() {
        }
 
        // Null connected elements to avoid leaks in IE
-       marginDiv = div = input = null;
+       testElement = fragment = select = opt = body = marginDiv = div = input = null;
 
        return support;
 })();