mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Add some extra tests to make sure we can get the value of hyphenated CSS properties, for #3732.
This commit is contained in:
@@ -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." );
|
||||
|
||||
Reference in New Issue
Block a user