diff options
author | jaubourg <j@ubourg.net> | 2011-08-27 01:54:12 +0200 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-08-27 01:54:12 +0200 |
commit | f37fc9966e40b73dd4018872343b4b4ea36c4d46 (patch) | |
tree | 9c8f7e15687c20fe651ccd418dd8009cebdf64cd /test/unit/ajax.js | |
parent | 3589a53de98c63a528855755492875318ed0136c (diff) | |
download | jquery-f37fc9966e40b73dd4018872343b4b4ea36c4d46.tar.gz jquery-f37fc9966e40b73dd4018872343b4b4ea36c4d46.zip |
Considers Safari XMLHttpRequest's bug when testing for custom status text. Will have to be revisited when $.browser.chrome is introduced.
Diffstat (limited to 'test/unit/ajax.js')
-rw-r--r-- | test/unit/ajax.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js index ed6acda92..f871da723 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -2096,10 +2096,10 @@ test( "jQuery.ajax - statusText" , 4, function() { stop(); jQuery.ajax( url( "data/statusText.php?status=200&text=Hello" ) ).done(function( _, statusText, jqXHR ) { strictEqual( statusText, "success", "callback status text ok for success" ); - strictEqual( jqXHR.statusText, "Hello", "jqXHR status text ok for success" ); + ok( jqXHR.statusText === "Hello" || jQuery.browser.safari && jqXHR.statusText === "OK", "jqXHR status text ok for success (" + jqXHR.statusText + ")" ); jQuery.ajax( url( "data/statusText.php?status=404&text=World" ) ).fail(function( jqXHR, statusText ) { strictEqual( statusText, "error", "callback status text ok for error" ); - strictEqual( jqXHR.statusText, "World", "jqXHR status text ok for error" ); + ok( jqXHR.statusText === "World" || jQuery.browser.safari && jqXHR.statusText === "Not Found", "jqXHR status text ok for error (" + jqXHR.statusText + ")" ); start(); }); }); |