Core: Resume focus test based on the event, not the callback.

This commit is contained in:
Scott González 2013-01-08 07:54:11 -05:00
parent cc5ac08fde
commit 48a790a327

View File

@ -19,10 +19,10 @@ asyncTest( "focus", function() {
$( "#inputTabindex0" ) $( "#inputTabindex0" )
.one( "focus", function() { .one( "focus", function() {
ok( true, "event triggered" ); ok( true, "event triggered" );
start();
}) })
.focus( 500, function() { .focus( 500, function() {
ok( true, "callback triggered" ); ok( true, "callback triggered" );
start();
}); });
}); });