diff options
author | Scott González <scott.gonzalez@gmail.com> | 2014-10-20 19:26:01 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2014-10-20 19:26:01 -0400 |
commit | 89ed68fb05ed8dff281d0de941a6d1164f2e66f1 (patch) | |
tree | 4adecce2a37b82416346a6883dd87d0d5d63a484 /tests | |
parent | b2a477f1bfbe34368d6006c98a9a44e31387e17b (diff) | |
download | jquery-ui-89ed68fb05ed8dff281d0de941a6d1164f2e66f1.tar.gz jquery-ui-89ed68fb05ed8dff281d0de941a6d1164f2e66f1.zip |
Core: Removed .focus( delay )
Fixes #9649
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/core/core_deprecated.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/unit/core/core_deprecated.js b/tests/unit/core/core_deprecated.js index f97b009a7..bb06f77b2 100644 --- a/tests/unit/core/core_deprecated.js +++ b/tests/unit/core/core_deprecated.js @@ -2,34 +2,6 @@ module( "core - deprecated" ); -asyncTest( "focus - original functionality", function() { - expect( 1 ); - $( "#inputTabindex0" ) - .one( "focus", function() { - ok( true, "event triggered" ); - start(); - }) - .focus(); -}); - -asyncTest( "focus", function() { - expect( 2 ); - - // support: IE 8 - // IE sometimes gets confused about what's focused if we don't explicitly - // focus a different element first - $( "body" ).focus(); - - $( "#inputTabindex0" ) - .one( "focus", function() { - ok( true, "event triggered" ); - start(); - }) - .focus( 500, function() { - ok( true, "callback triggered" ); - }); -}); - test( "zIndex", function() { expect( 7 ); var el = $( "#zIndexAutoWithParent" ), |