Skip to content

Commit

Permalink
Make sure that we don't try to use a detached node (that was in a fra…
Browse files Browse the repository at this point in the history
…gment) as a fragment in IE. Fixes #5829.
  • Loading branch information
jeresig committed Feb 13, 2010
1 parent 726fda0 commit 99e7560
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/manipulation.js
Expand Up @@ -321,7 +321,7 @@ jQuery.fn.extend({
parent = value && value.parentNode;

// If we're in a fragment, just use that instead of building a new one
if ( parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) {
if ( jQuery.support.parentNode && parent && parent.nodeType === 11 && parent.childNodes.length === this.length ) {
results = { fragment: parent };

} else {
Expand Down
2 changes: 2 additions & 0 deletions src/support.js
Expand Up @@ -56,6 +56,8 @@
// (WebKit defaults to false instead of true, IE too, if it's in an optgroup)
optSelected: document.createElement("select").appendChild( document.createElement("option") ).selected,

parentNode: div.removeChild( div.appendChild( document.createElement("div") ) ).parentNode === null,

// Will be defined later
checkClone: false,
scriptEval: false,
Expand Down
12 changes: 11 additions & 1 deletion test/unit/manipulation.js
Expand Up @@ -376,7 +376,8 @@ test("append(Function) with incoming value", function() {
});

test("appendTo(String|Element|Array<Element>|jQuery)", function() {
expect(13);
expect(14);

var defaultText = 'Try them out:'
jQuery('<b>buga</b>').appendTo('#first');
equals( jQuery("#first").text(), defaultText + 'buga', 'Check if text appending works' );
Expand Down Expand Up @@ -429,6 +430,15 @@ test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
jQuery("<span>a</span><b>b</b>").filter("span").appendTo( div );

equals( div.children().length, 1, "Make sure the right number of children were inserted." );

div = jQuery("#moretests div");

var num = jQuery("#main div").length;
div.remove().appendTo("#main");

equals( jQuery("#main div").length, num, "Make sure all the removed divs were inserted." );

reset();
});

var testPrepend = function(val) {
Expand Down

0 comments on commit 99e7560

Please sign in to comment.