aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/unit/css.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/unit/css.js b/test/unit/css.js
index 97eb1e9a6..b424d56eb 100644
--- a/test/unit/css.js
+++ b/test/unit/css.js
@@ -204,12 +204,9 @@ test( "css() explicit and relative values", 29, function() {
});
test("css(String, Object)", function() {
- expect( 20 );
+ expect( 19 );
var j, div, display, ret, success;
- jQuery("#nothiddendiv").css("top", "-1em");
- ok( jQuery("#nothiddendiv").css("top"), -16, "Check negative number in EMs." );
-
jQuery("#floatTest").css("float", "left");
equal( jQuery("#floatTest").css("float"), "left", "Modified CSS float using \"float\": Assert float is left");
jQuery("#floatTest").css("font-size", "20px");