diff options
author | jeresig <jeresig@gmail.com> | 2009-12-03 12:34:27 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2009-12-03 12:34:27 -0500 |
commit | 8a33a855b588bc398f31f971eb4b3c2f4cac84f7 (patch) | |
tree | 494957b874fc4354461ec9dc4f9e3eb91228c677 /test | |
parent | 9d6c4d8413e678203a905ab3bc3a87415a6a70ce (diff) | |
download | jquery-8a33a855b588bc398f31f971eb4b3c2f4cac84f7.tar.gz jquery-8a33a855b588bc398f31f971eb4b3c2f4cac84f7.zip |
Tweaked a CSS test to handle differences in font-size % support in browsers.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/css.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/unit/css.js b/test/unit/css.js index 270638e62..c199ca1eb 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -47,8 +47,15 @@ test("css(String|Hash)", function() { child.attr("class", "em"); equals( parseInt(child.css("fontSize")), 32, "Verify fontSize em set." ); + // Have to verify this as the result depends upon the browser's CSS + // support for font-size percentages child.attr("class", "prct"); - equals( parseInt(child.css("fontSize")), 24, "Verify fontSize % set." ); + var prctval = parseInt(child.css("fontSize")), checkval = 0; + if ( prctval === 16 || prctval === 24 ) { + checkval = prctval; + } + + equals( prctval, checkval, "Verify fontSize % set." ); }); test("css(String, Object)", function() { |