diff options
author | John Resig <jeresig@gmail.com> | 2010-10-25 17:54:27 -0700 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2010-10-25 17:54:27 -0700 |
commit | de58db0cdf4dc08db8683ad6cd0035c5d64b26ac (patch) | |
tree | fafcbc5671beb1bda40ad597ae6152a21aac1e30 /test/unit/ajax.js | |
parent | 9b97599fa4d615a91d1605d9c664c50f576911ce (diff) | |
download | jquery-de58db0cdf4dc08db8683ad6cd0035c5d64b26ac.tar.gz jquery-de58db0cdf4dc08db8683ad6cd0035c5d64b26ac.zip |
Backing out fix for #5803 from 3b50eaca2cd0b1439235e39c4e98a6438e8f55b2.
Diffstat (limited to 'test/unit/ajax.js')
-rw-r--r-- | test/unit/ajax.js | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 734465916..b2e51fbcf 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -825,21 +825,6 @@ test("jQuery.ajax() - JSONP, Local", function() { plus(); } }); - - // Supports Ticket #5803 - jQuery.ajax({ - url: "data/jsonp.php", - jsonpCallback: "jsonpResults", - success: function(data){ - ok( data.data, "JSON results returned without dataType:jsonp when jsonpCallback is defined" ); - plus(); - }, - error: function(data){ - ok( false, "Ajax error JSON (GET, custom callback name)" ); - plus(); - } - }); - }); test("JSONP - Custom JSONP Callback", function() { |