File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 11module ( "css" ) ;
22
33test ( "css(String|Hash)" , function ( ) {
4- expect ( 28 ) ;
4+ expect ( 30 ) ;
55
66 equals ( jQuery ( '#main' ) . css ( "display" ) , 'none' , 'Check for css property "display"' ) ;
77
@@ -44,7 +44,9 @@ test("css(String|Hash)", function() {
4444 var div = jQuery ( '#nothiddendiv' ) , child = jQuery ( '#nothiddendivchild' ) ;
4545
4646 equals ( parseInt ( div . css ( "fontSize" ) ) , 16 , "Verify fontSize px set." ) ;
47+ equals ( parseInt ( div . css ( "font-size" ) ) , 16 , "Verify fontSize px set." ) ;
4748 equals ( parseInt ( child . css ( "fontSize" ) ) , 16 , "Verify fontSize px set." ) ;
49+ equals ( parseInt ( child . css ( "font-size" ) ) , 16 , "Verify fontSize px set." ) ;
4850
4951 child . attr ( "class" , "em" ) ;
5052 equals ( parseInt ( child . css ( "fontSize" ) ) , 32 , "Verify fontSize em set." ) ;
You can’t perform that action at this time.
0 commit comments