From 1ea539b4f08d9056e7e133173f7093908a513f77 Mon Sep 17 00:00:00 2001 From: jeresig Date: Tue, 22 Dec 2009 11:54:54 -0500 Subject: [PATCH] Add some extra tests to make sure we can get the value of hyphenated CSS properties, for #3732. --- test/unit/css.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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." ); -- 1.7.10.4