mirror of
https://github.com/jquery/jquery.git
synced 2026-01-23 05:18:12 -05:00
Fix #13019. Disconnected nodes with .replaceWith are a noop. Close gh-1062.
This commit is contained in:
@@ -249,8 +249,7 @@ jQuery.fn.extend({
|
||||
},
|
||||
|
||||
replaceWith: function( value ) {
|
||||
var self = this,
|
||||
isFunc = jQuery.isFunction( value );
|
||||
var isFunc = jQuery.isFunction( value );
|
||||
|
||||
// Make sure that the elements are removed from the DOM before they are inserted
|
||||
// this can help fix replacing a parent with child elements
|
||||
@@ -258,17 +257,10 @@ jQuery.fn.extend({
|
||||
value = jQuery( value ).detach();
|
||||
}
|
||||
|
||||
return this.domManip( [ value ], true, function( elem, i ) {
|
||||
return this.domManip( [ value ], true, function( elem ) {
|
||||
var next, parent;
|
||||
|
||||
if ( isDisconnected( this ) ) {
|
||||
// for disconnected elements, we simply replace
|
||||
// with the new content in the set
|
||||
self[ i ] = elem;
|
||||
return;
|
||||
}
|
||||
|
||||
if ( this.nodeType === 1 || this.nodeType === 11 ) {
|
||||
if ( !isDisconnected( this ) && this.nodeType === 1 || this.nodeType === 11 ) {
|
||||
next = this.nextSibling;
|
||||
parent = this.parentNode;
|
||||
|
||||
|
||||
@@ -1230,11 +1230,9 @@ var testReplaceWith = function( val ) {
|
||||
QUnit.reset();
|
||||
|
||||
set = jQuery("<div/>").replaceWith(val("<span>test</span>"));
|
||||
equal( set[0].nodeName.toLowerCase(), "span", "Replace the disconnected node." );
|
||||
equal( set.length, 1, "Replace the disconnected node." );
|
||||
|
||||
// #11338
|
||||
ok( jQuery("<div>1</div>").replaceWith( val("<span/>") ).is("span"), "#11338, Make sure disconnected node with content is replaced" );
|
||||
equal( set[0].nodeName.toLowerCase(), "div", "No effect on a disconnected node." );
|
||||
equal( set.length, 1, "No effect on a disconnected node." );
|
||||
equal( set[0].childNodes.length, 0, "No effect on a disconnected node." );
|
||||
|
||||
non_existant = jQuery("#does-not-exist").replaceWith( val("<b>should not throw an error</b>") );
|
||||
equal( non_existant.length, 0, "Length of non existant element." );
|
||||
@@ -1288,43 +1286,6 @@ test( "replaceWith(string) for more than one element", function() {
|
||||
equal(jQuery("#foo p").length, 0, "verify that all the three original element have been replaced");
|
||||
});
|
||||
|
||||
test( "replaceWith(string) for collection with disconnected element", function() {
|
||||
|
||||
expect( 18 );
|
||||
|
||||
var testSet, newSet,
|
||||
elem = jQuery("<div />");
|
||||
|
||||
|
||||
QUnit.reset();
|
||||
testSet = jQuery("#foo p").add( elem );
|
||||
equal( testSet.length, 4, "ensuring that test data has not changed" );
|
||||
|
||||
newSet = testSet.replaceWith("<span>bar</span>");
|
||||
equal( testSet.length, 4, "ensure that we still have the same number of elements" );
|
||||
equal( jQuery("#foo span").length, 3, "verify that all the three original elements have been replaced" );
|
||||
equal( jQuery("#foo p").length, 0, "verify that all the three original elements have been replaced" );
|
||||
equal( testSet.filter("p").length, 3, "ensure we still have the original set of attached elements" );
|
||||
equal( testSet.filter("div").length, 0, "ensure the detached element is not in the original set" );
|
||||
equal( newSet.filter("p").length, 3, "ensure we still have the original set of attached elements in new set" );
|
||||
equal( newSet.filter("div").length, 0, "ensure the detached element has been replaced in the new set" );
|
||||
equal( newSet.filter("span").length, 1, "ensure the new element is in the new set" );
|
||||
|
||||
QUnit.reset();
|
||||
testSet = elem.add( jQuery("#foo p") );
|
||||
equal( testSet.length, 4, "ensuring that test data has not changed" );
|
||||
|
||||
testSet.replaceWith("<span>bar</span>");
|
||||
equal( testSet.length, 4, "ensure that we still have the same number of elements" );
|
||||
equal( jQuery("#foo span").length, 3, "verify that all the three original elements have been replaced" );
|
||||
equal( jQuery("#foo p").length, 0, "verify that all the three original elements have been replaced" );
|
||||
equal( testSet.filter("p").length, 3, "ensure we still have the original set of attached elements" );
|
||||
equal( testSet.filter("div").length, 0, "ensure the detached element is not in the original set" );
|
||||
equal( newSet.filter("p").length, 3, "ensure we still have the original set of attached elements in new set" );
|
||||
equal( newSet.filter("div").length, 0, "ensure the detached element has been replaced in the new set" );
|
||||
equal( newSet.filter("span").length, 1, "ensure the new element is in the new set" );
|
||||
});
|
||||
|
||||
test( "replaceAll(String|Element|Array<Element>|jQuery)", function() {
|
||||
|
||||
expect( 10 );
|
||||
|
||||
Reference in New Issue
Block a user