diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2013-04-01 08:59:52 -0400 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2013-04-01 08:59:52 -0400 |
commit | 5217b975f32aeca0bf12ca76f24084f319b46ebe (patch) | |
tree | 16cd1e21471cc65a78ef9da5fadb74f8726caa9b /tests | |
parent | efe8da8e6e9b50547fe9a632b267c7f8479b6686 (diff) | |
download | jquery-ui-5217b975f32aeca0bf12ca76f24084f319b46ebe.tar.gz jquery-ui-5217b975f32aeca0bf12ca76f24084f319b46ebe.zip |
Spinner Tests: Fix IE test failures by removing timing dependencies from focus/blur tests.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/spinner/spinner_core.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/unit/spinner/spinner_core.js b/tests/unit/spinner/spinner_core.js index f9bd7c2e4..03088fecd 100644 --- a/tests/unit/spinner/spinner_core.js +++ b/tests/unit/spinner/spinner_core.js @@ -94,11 +94,11 @@ asyncTest( "blur input while spinning with UP", function() { function step2() { value = element.val(); ok( value > 11, "repeating while key is down" ); - setTimeout( function() { + + element.bind( "blur", function() { value = element.val(); - }); - element[0].blur(); - setTimeout( step3, 250 ); + setTimeout( step3, 750 ); + })[ 0 ].blur(); } function step3() { |