aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/spinner/spinner_core.js8
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() {