diff options
author | Richard Gibson <richard.gibson@gmail.com> | 2012-11-01 17:32:08 -0400 |
---|---|---|
committer | Richard Gibson <richard.gibson@gmail.com> | 2012-11-01 17:32:08 -0400 |
commit | 3f515045808dda2b4320a82894e875eb61d255e2 (patch) | |
tree | 1dc3c8a2420fc5822e330f06a1a5b95e3dd2c3fe /test/unit/css.js | |
parent | 395f1da76ba9faeb2f72548c28da228474a2434c (diff) | |
download | jquery-3f515045808dda2b4320a82894e875eb61d255e2.tar.gz jquery-3f515045808dda2b4320a82894e875eb61d255e2.zip |
No ticket: remove test suite external dependencies
Diffstat (limited to 'test/unit/css.js')
-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 3dc9653ba..94d972793 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -746,7 +746,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)" ); + var span = jQuery( "<span/>" ).css( "background-image", "url(data/1x1.jpg)" ); notEqual( span.css( "background-image" ), null, "can't get background-image in IE<9, see #10254" ); var div = jQuery( "<div/>" ).css( "top", 10 ); |