Add some extra tests to make sure we can get the value of hyphenated CSS properties, for #3732.

This commit is contained in:
jeresig 2009-12-22 11:54:54 -05:00
parent e87b090cb7
commit 1ea539b4f0

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