Skip to content

Commit

Permalink
Make sure that some height/width is set for the nothiddendiv before c…
Browse files Browse the repository at this point in the history
…hecking.
  • Loading branch information
jeresig committed Dec 16, 2009
1 parent f078e93 commit de65985
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/unit/css.js
Expand Up @@ -12,6 +12,8 @@ test("css(String|Hash)", function() {
ok( jQuery('#nothiddendiv').is(':visible'), 'Modified CSS display: Assert element is visible');

// handle negative numbers by ignoring #1599, #4216
jQuery('#nothiddendiv').css({ 'width': 1, 'height': 1 });

var width = parseFloat(jQuery('#nothiddendiv').css('width')), height = parseFloat(jQuery('#nothiddendiv').css('height'));
jQuery('#nothiddendiv').css({ width: -1, height: -1 });
equals( parseFloat(jQuery('#nothiddendiv').css('width')), width, 'Test negative width ignored')
Expand Down

0 comments on commit de65985

Please sign in to comment.