Bug 585994 - comment out unreliable "All 3 still in the queue" jQuery test, a=orange

This commit is contained in:
Phil Ringnalda 2010-10-09 20:14:57 -07:00
Родитель 106c2d532f
Коммит d8387d0824
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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();