Fix #8335: Avoid memory leak by never setting data on non-element non-document nodes. Ref gh-1127.

(cherry picked from commit cc324abf73)
This commit is contained in:
danilsomsikov 2013-01-11 16:04:50 +01:00 committed by Richard Gibson
parent 6b1b0a26b4
commit 8f72967ee2
2 changed files with 17 additions and 1 deletions

View File

@ -223,6 +223,11 @@ jQuery.extend({
// A method for determining if a DOM node can handle the data expando
acceptData: function( elem ) {
// Do not set data on non-element because it will not be cleared (#8335).
if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) {
return false;
}
var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ];
// nodes accept data unless otherwise specified; rejection can be conditional

View File

@ -133,8 +133,16 @@ test("Expando cleanup", 4, function() {
jQuery(div).remove();
});
test("Data is not being set on comment and text nodes", function() {
expect(2);
ok( !jQuery.hasData( jQuery("<!-- comment -->").data("foo", 0) ) );
ok( !jQuery.hasData( jQuery("<span>text</span>").contents().data("foo", 0) ) );
});
test("jQuery.acceptData", function() {
expect(7);
expect(9);
ok( jQuery.acceptData( document ), "document" );
ok( jQuery.acceptData( document.documentElement ), "documentElement" );
@ -149,6 +157,9 @@ test("jQuery.acceptData", function() {
var applet = document.createElement("object");
applet.setAttribute("classid", "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93");
ok( !jQuery.acceptData( applet ), "applet" );
ok( !jQuery.acceptData( document.createComment("") ), "comment" );
ok( !jQuery.acceptData( document.createTextNode("") ), "text" );
});
test(".data()", function() {