Css: Remove non-functional unit test for negative margin

Thanks @MatthewMueller

Closes gh-1474
Ref gh-1918
This commit is contained in:
Dave Methvin 2014-12-09 16:30:22 -05:00
parent 31c7d7fb75
commit 4ab743188e

View 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");