]> source.dussan.org Git - jquery.git/commitdiff
Css: Remove non-functional unit test for negative margin
authorDave Methvin <dave.methvin@gmail.com>
Tue, 9 Dec 2014 21:30:22 +0000 (16:30 -0500)
committerDave Methvin <dave.methvin@gmail.com>
Tue, 9 Dec 2014 21:39:59 +0000 (16:39 -0500)
Thanks @MatthewMueller

Closes gh-1474
Ref gh-1918

test/unit/css.js

index 97eb1e9a6f68225c21a16d21a815e2258a5a1cf1..b424d56ebd91e101cac75608a73c775ac823f7cd 100644 (file)
@@ -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");