aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrwldrn <waldron.rick@gmail.com>2011-01-17 18:55:40 -0600
committerColin Snover <github.com@zetafleet.com>2011-01-17 18:55:40 -0600
commit35aeac13369c66d21f67cd7524f1cf341e3550ce (patch)
treef9b9a308eac943b3ac90b17fb99e5c527c6c6723
parentd503845d0cf45632c0d7c3542ffd1b19257a8e5e (diff)
downloadjquery-35aeac13369c66d21f67cd7524f1cf341e3550ce.tar.gz
jquery-35aeac13369c66d21f67cd7524f1cf341e3550ce.zip
Update unit test for #7608 which was leaking timers.
-rw-r--r--test/unit/css.js13
1 files changed, 2 insertions, 11 deletions
diff --git a/test/unit/css.js b/test/unit/css.js
index 1b2598741..555f13575 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('<div id="bug7608" style="width:200px;border:solid 1px red;">' +
- '<div id="test" style="width:0%; background:#000;">&nbsp;</div></div>').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();
});