Adding in backwards-compatiblity support for jQuery().bind/unbind/trigger - and immed...
[jquery.git] / test / unit / css.js
index 7627475..116312e 100644 (file)
@@ -1,7 +1,7 @@
 module("css");
 
 test("css(String|Hash)", function() {
-       expect(27);
+       expect(30);
 
        equals( jQuery('#main').css("display"), 'none', 'Check for css property "display"');
 
@@ -12,6 +12,8 @@ test("css(String|Hash)", function() {
        ok( jQuery('#nothiddendiv').is(':visible'), 'Modified CSS display: Assert element is visible');
 
        // handle negative numbers by ignoring #1599, #4216
+       jQuery('#nothiddendiv').css({ 'width': 1, 'height': 1 });
+
        var width = parseFloat(jQuery('#nothiddendiv').css('width')), height = parseFloat(jQuery('#nothiddendiv').css('height'));
        jQuery('#nothiddendiv').css({ width: -1, height: -1 });
        equals( parseFloat(jQuery('#nothiddendiv').css('width')), width, 'Test negative width ignored')
@@ -42,7 +44,9 @@ test("css(String|Hash)", function() {
        var div = jQuery('#nothiddendiv'), child = jQuery('#nothiddendivchild');
 
        equals( parseInt(div.css("fontSize")), 16, "Verify fontSize px set." );
+       equals( parseInt(div.css("font-size")), 16, "Verify fontSize px set." );
        equals( parseInt(child.css("fontSize")), 16, "Verify fontSize px set." );
+       equals( parseInt(child.css("font-size")), 16, "Verify fontSize px set." );
 
        child.attr("class", "em");
        equals( parseInt(child.css("fontSize")), 32, "Verify fontSize em set." );
@@ -56,6 +60,8 @@ test("css(String|Hash)", function() {
        }
 
        equals( prctval, checkval, "Verify fontSize % set." );
+
+       equals( typeof child.css("width"), "string", "Make sure that a string width is returned from css('width')." );
 });
 
 test("css(String, Object)", function() {