expect(4);
stop();
- var $foo = jQuery("#nothiddendiv");
+ var $foo = jQuery("#nothiddendivchild");
var w = 0;
$foo.hide().width(200).width();
nw = $foo.width();
ok( nw != w, "Stop didn't reset the animation " + nw + "px " + w + "px");
- equals( $foo.queue().length, 2, "The next animation continued" );
+ equals( $foo.queue().length, 1, "The next animation continued" );
$foo.stop(true);
start();
}, 100);
expect(3);
stop();
- var $foo = jQuery("#nothiddendiv");
+ var $foo = jQuery("#nothiddendivchild");
var w = 0;
$foo.hide().width(200).width();
$foo.stop(false, true);
nw = $foo.width();
- equals( nw, 200, "Stop() reset the animation" );
+ equals( nw, 1, "Stop() reset the animation" );
setTimeout(function(){
- equals( $foo.queue().length, 3, "The next animation continued" );
+ equals( $foo.queue().length, 2, "The next animation continued" );
$foo.stop(true);
start();
}, 100);