X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Ffx.js;h=c3dd30b3811b6cf3ca8390217079ebe6f5e40a7b;hb=1ac087f6f90eb41fe79d46b7e1f09cc7e2125670;hp=db6210e808297a3fbb01e34511e5df0245ac194d;hpb=34a9f8a210cfa0aabccc40a974646127d1871d1a;p=jquery.git diff --git a/test/unit/fx.js b/test/unit/fx.js index db6210e..c3dd30b 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -106,7 +106,7 @@ test("stop() - several in queue", function() { expect(4); stop(); - var $foo = jQuery("#nothiddendiv"); + var $foo = jQuery("#nothiddendivchild"); var w = 0; $foo.hide().width(200).width(); @@ -121,7 +121,7 @@ test("stop() - several in queue", function() { 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); @@ -158,7 +158,7 @@ test("stop(clearQueue, gotoEnd)", function() { expect(3); stop(); - var $foo = jQuery("#nothiddendiv"); + var $foo = jQuery("#nothiddendivchild"); var w = 0; $foo.hide().width(200).width(); @@ -172,10 +172,10 @@ test("stop(clearQueue, gotoEnd)", function() { $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); @@ -184,7 +184,7 @@ test("stop(clearQueue, gotoEnd)", function() { test("toggle()", function() { expect(6); - var x = jQuery("#foo"); + var x = jQuery("#nothiddendiv"); ok( x.is(":visible"), "is visible" ); x.toggle(); ok( x.is(":hidden"), "is hidden" );