From d8387d082494501c1c0460b691296d2529ede7f1 Mon Sep 17 00:00:00 2001 From: Phil Ringnalda Date: Sat, 9 Oct 2010 20:14:57 -0700 Subject: [PATCH] Bug 585994 - comment out unreliable "All 3 still in the queue" jQuery test, a=orange --- dom/tests/mochitest/ajax/jquery/test/unit/fx.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dom/tests/mochitest/ajax/jquery/test/unit/fx.js b/dom/tests/mochitest/ajax/jquery/test/unit/fx.js index 62fcc289355f..91ed18b731f9 100644 --- a/dom/tests/mochitest/ajax/jquery/test/unit/fx.js +++ b/dom/tests/mochitest/ajax/jquery/test/unit/fx.js @@ -89,7 +89,8 @@ test("stop() - several in queue", function() { $foo.animate({ width:'hide' }, 1000); $foo.animate({ width:'show' }, 1000); setTimeout(function(){ - equals( $foo.queue().length, 3, "All 3 still in the queue" ); + // Unreliable. See bug 484994. + // equals( $foo.queue().length, 3, "All 3 still in the queue" ); var nw = $foo.width(); ok( nw != w, "An animation occurred " + nw + "px " + w + "px"); $foo.stop();