Merge branch 'fix-7853-add-context' of https://github.com/dmethvin/jquery into dmethvin-fix-7853-add-context
This commit is contained in:
commit
2e2d5e9db5
2 changed files with 9 additions and 8 deletions
|
@ -141,7 +141,7 @@ jQuery.fn.extend({
|
||||||
|
|
||||||
add: function( selector, context ) {
|
add: function( selector, context ) {
|
||||||
var set = typeof selector === "string" ?
|
var set = typeof selector === "string" ?
|
||||||
jQuery( selector, context || this.context ) :
|
jQuery( selector, context ) :
|
||||||
jQuery.makeArray( selector ),
|
jQuery.makeArray( selector ),
|
||||||
all = jQuery.merge( this.get(), set );
|
all = jQuery.merge( this.get(), set );
|
||||||
|
|
||||||
|
|
|
@ -441,11 +441,12 @@ test("add(String|Element|Array|undefined)", function() {
|
||||||
test("add(String, Context)", function() {
|
test("add(String, Context)", function() {
|
||||||
expect(6);
|
expect(6);
|
||||||
|
|
||||||
equals( jQuery(document).add("#form").length, 2, "Make sure that using regular context document still works." );
|
deepEqual( jQuery( "#firstp" ).add( "#ap" ).get(), q( "firstp", "ap" ), "Add selector to selector " );
|
||||||
equals( jQuery(document.body).add("#form").length, 2, "Using a body context." );
|
deepEqual( jQuery( document.getElementById("firstp") ).add( "#ap" ).get(), q( "firstp", "ap" ), "Add gEBId to selector" );
|
||||||
equals( jQuery(document.body).add("#html").length, 1, "Using a body context." );
|
deepEqual( jQuery( document.getElementById("firstp") ).add( document.getElementById("ap") ).get(), q( "firstp", "ap" ), "Add gEBId to gEBId" );
|
||||||
|
|
||||||
equals( jQuery(document).add("#form", document).length, 2, "Use a passed in document context." );
|
var ctx = document.getElementById("firstp");
|
||||||
equals( jQuery(document).add("#form", document.body).length, 2, "Use a passed in body context." );
|
deepEqual( jQuery( "#firstp" ).add( "#ap", ctx ).get(), q( "firstp" ), "Add selector to selector " );
|
||||||
equals( jQuery(document).add("#html", document.body).length, 1, "Use a passed in body context." );
|
deepEqual( jQuery( document.getElementById("firstp") ).add( "#ap", ctx ).get(), q( "firstp" ), "Add gEBId to selector, not in context" );
|
||||||
|
deepEqual( jQuery( document.getElementById("firstp") ).add( "#ap", document.getElementsByTagName("body")[0] ).get(), q( "firstp", "ap" ), "Add gEBId to selector, in context" );
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue