From 0705be475092aede1eddae01319ec931fb9c65fc Mon Sep 17 00:00:00 2001 From: Oleg Gaidarenko Date: Sat, 9 May 2015 21:39:49 +0300 Subject: [PATCH] Event: remove deprecated event aliases Fixes gh-2286 Closes gh-2287 Ref trac-11733 --- src/event/alias.js | 4 ++-- test/unit/event.js | 9 +-------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/src/event/alias.js b/src/event/alias.js index 4ec920a03..eb43537ff 100644 --- a/src/event/alias.js +++ b/src/event/alias.js @@ -3,9 +3,9 @@ define([ "../event" ], function( jQuery ) { -jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + +jQuery.each( ("blur focus focusin focusout resize scroll click dblclick " + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup error contextmenu").split(" "), + "change select submit keydown keypress keyup contextmenu").split(" "), function( i, name ) { // Handle event binding diff --git a/test/unit/event.js b/test/unit/event.js index d9bdafc34..a84ec087a 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -901,7 +901,7 @@ test("mouseenter, mouseleave don't catch exceptions", function() { if ( jQuery.fn.click ) { test("trigger() shortcuts", function() { - expect(6); + expect(5); var counter, clickCounter, elem = jQuery("
  • Change location
  • ").prependTo("#firstUL"); @@ -933,13 +933,6 @@ if ( jQuery.fn.click ) { jQuery("#simon1").click(); equal( clickCounter, 1, "Check that click, triggers onclick event handler on an a tag also" ); - elem = jQuery("").load(function(){ - ok( true, "Trigger the load event, using the shortcut .load() (#2819)"); - }).load(); - - // manually clean up detached elements - elem.remove(); - // test that special handlers do not blow up with VML elements (#7071) jQuery("").appendTo("head"); jQuery(" ").appendTo("#form");