From: jeresig Date: Tue, 22 Dec 2009 16:54:54 +0000 (-0500) Subject: Add some extra tests to make sure we can get the value of hyphenated CSS properties... X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=1ea539b4f08d9056e7e133173f7093908a513f77;p=jquery.git Add some extra tests to make sure we can get the value of hyphenated CSS properties, for #3732. --- diff --git a/test/unit/css.js b/test/unit/css.js index f50a21c..116312e 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -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." );