Fixed #1908 by testing to make sure it isn't null before checking the nodeType.
This commit is contained in:
parent
ed7608d8ee
commit
95c0265486
2 changed files with 6 additions and 3 deletions
|
@ -837,7 +837,7 @@ test("is(String)", function() {
|
|||
});
|
||||
|
||||
test("$.extend(Object, Object)", function() {
|
||||
expect(14);
|
||||
expect(15);
|
||||
|
||||
var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
|
||||
options = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
|
||||
|
@ -873,6 +873,9 @@ test("$.extend(Object, Object)", function() {
|
|||
var ret = jQuery.extend(true, { foo: "1,2,3" }, { foo: [1, 2, 3] } );
|
||||
ok( typeof ret.foo != "string", "Check to make sure values equal with coersion (but not actually equal) overwrite correctly" );
|
||||
|
||||
var ret = jQuery.extend(true, { foo:"bar" }, { foo:null } );
|
||||
equals( ret.foo, null, "Check to make sure values equal with coersion (but not actually equal) overwrite correctly" );
|
||||
|
||||
var defaults = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
|
||||
defaultsCopy = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
|
||||
options1 = { xnumber2: 1, xstring2: "x" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue