return false;
}
+ // Not own constructor property must be Object
if ( obj.constructor &&
- !hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) {
+ !hasOwn.call( obj, "constructor" ) &&
+ !hasOwn.call( obj.constructor.prototype || {}, "isPrototypeOf" ) ) {
return false;
}
} );
QUnit.asyncTest( "isPlainObject", function( assert ) {
- assert.expect( 19 );
+
+ assert.expect( 22 );
var pass, iframe, doc, parentObj, childObj, deep,
fn = function() {};
// The use case that we want to match
assert.ok( jQuery.isPlainObject( {} ), "{}" );
assert.ok( jQuery.isPlainObject( new window.Object() ), "new Object" );
+ assert.ok( jQuery.isPlainObject( { constructor: fn } ),
+ "plain object with constructor property" );
+ assert.ok( jQuery.isPlainObject( { constructor: "foo" } ),
+ "plain object with primitive constructor property" );
parentObj = { foo: "bar" };
childObj = Object.create( parentObj );
// Again, instantiated objects shouldn't be matched
assert.ok( !jQuery.isPlainObject( new fn() ), "new fn" );
+ // Instantiated objects with primitive constructors shouldn't be matched
+ fn.prototype.constructor = "foo";
+ assert.ok( !jQuery.isPlainObject( new fn() ), "new fn with primitive constructor" );
+
// Deep object
deep = { "foo": { "baz": true }, "foo2": document };
assert.ok( jQuery.isPlainObject( deep ), "Object with objects is still plain" );