X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;ds=sidebyside;f=test%2Funit%2Fcss.js;h=20e55073d9de31bb716b15e1ccd0841d721ccbf3;hb=c0802e5d21548ce5c41e51ff500308d5a5c9b249;hp=9f84d86e704209fd40e7abd04574184ec3a99a66;hpb=e8eff25f3b6d9a0c03f6581089406cebcc86aa34;p=jquery.git diff --git a/test/unit/css.js b/test/unit/css.js index 9f84d86..20e5507 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -85,7 +85,7 @@ test("css(String, Function)", function() { try { expect(3); - var colors = ["red", "green", "blue"]; + var colors = ["#ff0000", "#00ff00", "#0000ff"]; jQuery("
" + "
" + @@ -116,7 +116,7 @@ test("css(Object) where values are Functions", function() { try { expect(3); - var colors = ["red", "green", "blue"]; + 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++; });