Ref #13283, move .andSelf() to deprecated.js. Close gh-1170.

This commit is contained in:
Nguyen Phuc Lam
2013-02-26 22:55:36 -05:00
committed by Dave Methvin
parent 85f1985f24
commit 8bc7bdebef
7 changed files with 8 additions and 7 deletions

View File

@@ -1557,7 +1557,7 @@ asyncTest( "hide, fadeOut and slideUp called on element width height and width =
});
asyncTest( "Handle queue:false promises", 10, function() {
var foo = jQuery( "#foo" ).clone().andSelf(),
var foo = jQuery( "#foo" ).clone().addBack(),
step = 1;
foo.animate({

View File

@@ -43,7 +43,7 @@ test("Handler changes and .trigger() order", function() {
path = "";
markup
.find( "*" ).andSelf().on( "click", function( e ) {
.find( "*" ).addBack().on( "click", function( e ) {
path += this.nodeName.toLowerCase() + " ";
})
.filter( "b" ).on( "click", function( e ) {

View File

@@ -184,7 +184,7 @@ test("clearQueue() clears the fx queue", function() {
});
asyncTest( "fn.promise() - called when fx queue is empty", 3, function() {
var foo = jQuery( "#foo" ).clone().andSelf(),
var foo = jQuery( "#foo" ).clone().addBack(),
promised = false;
foo.queue( function( next ) {

View File

@@ -10,7 +10,7 @@ test( "find(String) under non-elements", function() {
var j = jQuery("#nonnodes").contents();
equal( j.find("div").length, 0, "Check node,textnode,comment to find zero divs" );
equal( j.find("div").andSelf().length, 3, "Check node,textnode,comment to find zero divs, but preserves pushStack" );
equal( j.find("div").addBack().length, 3, "Check node,textnode,comment to find zero divs, but preserves pushStack" );
});
test( "find(leading combinator)", function() {
@@ -45,7 +45,7 @@ test( "find(node|jQuery object)", function() {
equal( $two.find( $first ).length, 0, "first is in the collection and not within two" );
equal( $two.find( $first ).length, 0, "first is in the collection and not within two(node)" );
equal( $two.find( $foo[ 0 ] ).andSelf().length, 2, "find preserves the pushStack, see #12009" );
equal( $two.find( $foo[ 0 ] ).addBack().length, 2, "find preserves the pushStack, see #12009" );
});
test("is(String|undefined)", function() {