From: jaubourg Date: Fri, 26 Aug 2011 23:54:12 +0000 (+0200) Subject: Considers Safari XMLHttpRequest's bug when testing for custom status text. Will have... X-Git-Tag: 1.6.4rc1~4^2^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f37fc9966e40b73dd4018872343b4b4ea36c4d46;p=jquery.git Considers Safari XMLHttpRequest's bug when testing for custom status text. Will have to be revisited when $.browser.chrome is introduced. --- 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(); }); });