jQuery.clone() check that destination child nodes are not null. Fixes #9587

This commit is contained in:
rwldrn 2011-06-15 11:14:52 -04:00
parent d59b0f3e27
commit 5c3b9e0c24
3 changed files with 18 additions and 2 deletions

View File

@ -564,9 +564,12 @@ jQuery.extend({
// with an element if you are cloning the body and one of the
// elements on the page has a name or id of "length"
for ( i = 0; srcElements[i]; ++i ) {
// Ensure that the destination node is not null; Fixes #9587
if ( destElements[i] ) {
cloneFixAttributes( srcElements[i], destElements[i] );
}
}
}
// Copy the events from the original to the clone
if ( dataAndEvents ) {

View File

@ -281,6 +281,8 @@ Z</textarea>
</div>
<div id="fx-tests"></div>
<div id="no-clone-exception"><object><embed></embed></object></div>
</div>
</body>
</html>

View File

@ -1465,3 +1465,14 @@ test("jQuery.buildFragment - plain objects are not a document #8950", function()
} catch (e) {}
});
test("jQuery.clone - no exceptions for object elements #9587", function() {
expect(1);
try {
jQuery("#no-clone-exception").clone();
ok( true, "cloned with no exceptions" );
} catch( e ) {
ok( false, e.message );
}
});