Merge branch 'fix-7853-add-context' of https://github.com/dmethvin/jquery into dmethv...
[jquery.git] / test / unit / css.js
index edc340c..555f135 100644 (file)
@@ -1,4 +1,4 @@
-module("css");
+module("css", { teardown: moduleTeardown });
 
 test("css(String|Hash)", function() {
        expect(41);
@@ -322,23 +322,14 @@ 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;
-
-  jQuery('<div id="bug7608" style="width:200px;border:solid 1px red;">' +
-    '<div  id="test" style="width:0%; background:#000;">&nbsp;</div></div>').appendTo("body");
-    
-  try {
-       // the bug is located within src/css.js
-    jQuery("#bug7608 #test").animate( { width: val }, 1000);    
-    
-  } catch (e) {
-    result = false;  
-  }
-  
-  ok( result, "elem.runtimeStyle does not throw exception" );
-  
-  jQuery("#bug7608").remove();
+       expect(1);
+       var result = true;
+       
+       try {
+               jQuery("#foo").css( { width: "0%" } ).css("width");
+       } catch (e) {
+               result = false;
+       }
+
+       ok( result, "elem.runtimeStyle does not throw exception" );
 });