Permalink
Browse files
Update unit test for #7608 which was leaking timers.
- Loading branch information
Showing
with
2 additions
and
11 deletions.
-
+2
−11
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;"> </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(); |
|
|
}); |
0 comments on commit
35aeac1