From 35aeac13369c66d21f67cd7524f1cf341e3550ce Mon Sep 17 00:00:00 2001 From: rwldrn Date: Mon, 17 Jan 2011 18:55:40 -0600 Subject: [PATCH] Update unit test for #7608 which was leaking timers. --- test/unit/css.js | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/test/unit/css.js b/test/unit/css.js index 1b25987..555f135 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -323,22 +323,13 @@ test(":visible selector works properly on children with a hidden parent (bug #45 test("internal ref to elem.runtimeStyle (bug #7608)", function () { expect(1); - - var result = true, - val = 10; + var result = true; - jQuery('
' + - '
 
').appendTo("#main"); - try { - // the bug is located within src/css.js - jQuery("#bug7608 #test").animate( { width: val }, 1000); - + jQuery("#foo").css( { width: "0%" } ).css("width"); } catch (e) { result = false; } ok( result, "elem.runtimeStyle does not throw exception" ); - - jQuery("#bug7608").remove(); }); -- 1.7.10.4