]> source.dussan.org Git - jquery.git/commitdiff
Event: remove deprecated event aliases
authorOleg Gaidarenko <markelog@gmail.com>
Sat, 9 May 2015 18:39:49 +0000 (21:39 +0300)
committerOleg Gaidarenko <markelog@gmail.com>
Tue, 19 May 2015 10:43:34 +0000 (13:43 +0300)
Fixes gh-2286
Closes gh-2287
Ref trac-11733

src/event/alias.js
test/unit/event.js

index 4ec920a033c8ef2f8ca827fc98f5bb978c710551..eb43537ffb2ddefc575039f42a57627aaa28223c 100644 (file)
@@ -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
index d9bdafc343457bce45929de58fac0b27c81cf377..a84ec087afd45f71805a693ecb352b70291b3a99 100644 (file)
@@ -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("<li><a href='#'>Change location</a></li>").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("<img />").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("<xml:namespace ns='urn:schemas-microsoft-com:vml' prefix='v' />").appendTo("head");
                jQuery("<v:oval id='oval' style='width:100pt;height:75pt;' fillcolor='red'> </v:oval>").appendTo("#form");