From c0802e5d21548ce5c41e51ff500308d5a5c9b249 Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Mon, 13 Jul 2009 19:48:08 +0000 Subject: [PATCH] Test Tweak to normalize the CSS results across browsers --- test/unit/css.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/unit/css.js b/test/unit/css.js index 89f8398..20e5507 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -116,7 +116,7 @@ test("css(Object) where values are Functions", function() { try { expect(3); - var colors = ["#ff0000", "#00ff00", "#0000ff"]; + var colors = ["rgb(255, 0, 0)", "rgb(0, 255, 0)", "rgb(0, 0, 255)"]; jQuery("
" + "
" + @@ -134,7 +134,9 @@ test("css(Object) where values are Functions", function() { index = 0; jQuery("#cssFunctionTest div").each(function() { - equals( jQuery(this).css("color"), colors[index], "Div #" + index + " should be " + colors[index] ); + var computedColor = jQuery(this).css("color").replace(/ /g, ''); + var expectedColor = colors[index].replace(/ /g, ''); + equals( computedColor, expectedColor, "Div #" + index + " should be " + expectedColor ); index++; }); -- 1.7.10.4