Add some extra tests to make sure we can get the value of hyphenated CSS properties...
authorjeresig <jeresig@gmail.com>
Tue, 22 Dec 2009 16:54:54 +0000 (11:54 -0500)
committerjeresig <jeresig@gmail.com>
Tue, 22 Dec 2009 16:54:54 +0000 (11:54 -0500)
test/unit/css.js

index f50a21c..116312e 100644 (file)
@@ -1,7 +1,7 @@
 module("css");
 
 test("css(String|Hash)", function() {
-       expect(28);
+       expect(30);
 
        equals( jQuery('#main').css("display"), 'none', 'Check for css property "display"');
 
@@ -44,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." );