From b807aedb7fee321fb3aa5d156a5a256ab0634e2d Mon Sep 17 00:00:00 2001 From: Daniel Herman Date: Thu, 15 May 2014 12:26:20 -0400 Subject: Event: Restore the `constructor` property on jQuery.Event prototype The original definition of the jQuery.Event prototype was paving over the `constructor` property which was causing jQuery.isPlainObject to improperly report that an instance of jQuery.Event was a plain object. Fixes #15090 Closes gh-1580 --- test/unit/event.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/unit/event.js b/test/unit/event.js index 67fe9115b..fe0f0c2da 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -1442,7 +1442,7 @@ if ( window.onbeforeunload === null && test("jQuery.Event( type, props )", function() { - expect(5); + expect(6); var event = jQuery.Event( "keydown", { keyCode: 64 }), handler = function( event ) { @@ -1458,6 +1458,8 @@ test("jQuery.Event( type, props )", function() { ok( "keyCode" in event, "Special 'keyCode' property exists" ); + strictEqual( jQuery.isPlainObject( event ), false, "Instances of $.Event should not be identified as a plain object." ); + jQuery("body").on( "keydown", handler ).trigger( event ); jQuery("body").off( "keydown" ); -- cgit v1.2.3