diff options
-rw-r--r-- | test/unit/css.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/css.js b/test/unit/css.js index 7e9509593..ff1bb2641 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -505,7 +505,7 @@ test("widows & orphans #8936", function () { test("can't get css for disconnected in IE<9, see #10254 and #8388", function() { expect( 2 ); var span = jQuery( "<span/>" ).css( "background-image", "url(http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif)" ); - equal( span.css( "background-image" ), "url(http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif)", "can't get background-image in IE<9, see #10254" ); + notEqual( span.css( "background-image" ), null, "can't get background-image in IE<9, see #10254" ); var div = jQuery( "<div/>" ).css( "top", 10 ); equal( div.css( "top" ), "10px", "can't get top in IE<9, see #8388" ); |