aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax/ajaxTest.js
Commit message (Collapse)AuthorAgeFilesLines
* Reorganzing the jQuery source (first phase).John Resig2007-09-081-641/+0
|
* Forgot to update the $.param() tests.John Resig2007-09-051-5/+5
|
* Re-disabled the Ajax tests in Safari.John Resig2007-09-051-2/+2
|
* Integration of Mike Alsup's excellent form serialization code. The benefits ↵John Resig2007-09-051-6/+26
| | | | | | | | | | | | | | | | | | are as follows: - New method: .serializeArray() This returns an array of name/value pairs representing the contents of a form, or individual input elements. - Enhancement: .serialize() The results are correct now (as opposed to the mess from before), and allows you to serializes forms directly (rather than just the input elements). - Enhancement: .val() This now returns the correct value when dealing wih selects. Additionally, when dealing with multiple selects, it returns an array of values. Based upon Mike's code: http://malsup.com/jquery/form/comp/form.js and test suite: http://malsup.com/jquery/form/comp/test.html
* Removed all deprecated functionality for jQuery 1.2. A full list of what was ↵John Resig2007-09-041-17/+10
| | | | removed can be found here: http://jquery.com/blog/2007/08/24/jquery-114-faster-more-tests-ready-for-12/
* Re-disabled the ajax tests in Safari 3.John Resig2007-09-031-2/+2
|
* Added support for:John Resig2007-09-031-123/+294
| | | | | | | | | | | | | - Cross Domain getScript $.getScript("http://foo.com/script.js"); - JSONP $.ajax({ url: "script.js", type: "jsonp" }); $.getJSON("script.js?callback=?"); - Cross Domain JSONP/getJSON $.getJSON("http://foo.com/script.js?callback=?"); - No-cache Ajax Requests $.ajax({ url: "test.html", cache: false });
* Added a test case for "purple include", fixed a bug.John Resig2007-08-251-0/+9
|
* Tweaked the Ajax test suite for Safari.John Resig2007-08-221-5/+10
|
* Complete overhaul of the Ajax test suite, it's now passing in all browsers. ↵John Resig2007-08-191-155/+203
| | | | | | | | | | In order to achieve this I had to fix a numbe r of bugs in the suite itself, along with other random bugs that popped up. The following bugs were resolved along the wa y: #1236 (.extend() keeps processing when it hits nulls), #1028 (.extend() now works recursively), #1080 ($.get no longer overwrites the data parameter), #1210 (Creating script and link tags now work), and #1463 (jQuery.global has been re-too led to no longer leak memory and slow things down).
* Got some XHR tests to run, still some hanging threads (need to investigate). ↵John Resig2007-07-091-31/+31
| | | | Started moving some Ajax tests away from using PHP (more portable this way). Fixed a number of XHR env bugs.
* Added test for #970Jörn Zaefferer2007-03-251-0/+13
|
* Simplified check for XMLHttpRequest (saving a few bytes) and fixed load()-testJörn Zaefferer2007-01-171-2/+2
|
* Fixed two FF JS warningsJörn Zaefferer2007-01-141-1/+1
|
* Fixed a bug with $("body") in dynamic documents, refactored $(...), stopped ↵John Resig2007-01-081-0/+4
| | | | the test suite from trying to run Ajax tests locally.
* Updated param method to encode name as well as value (per spec: ↵Mike Alsup2007-01-071-3/+3
| | | | http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1)
* added evalScripts testMike Alsup2007-01-021-0/+14
|
* Modified tests to show #746Jörn Zaefferer2006-12-311-1/+12
|
* Improved Mikes hack to ease testing against IE cacheJörn Zaefferer2006-12-311-30/+34
|
* add time to test.html request url using new Date().getTime()Mike Alsup2006-12-311-2/+2
|
* Fix for #534Jörn Zaefferer2006-12-291-1/+2
|
* Implemented global ajax settings - no documentation yetJörn Zaefferer2006-12-221-1/+15
|
* A few corrections to the testsuite to imrove the failure testingJörn Zaefferer2006-12-211-6/+6
|
* Implemented a better error handling for ajax requests. Exceptions caused by ↵Jörn Zaefferer2006-12-211-1/+3
| | | | dropping connections are now handled, too.
* Added test for sync requests with callbacks (#534)Jörn Zaefferer2006-12-211-0/+6
|
* Fixed synchrnous requests, improved AJAX inline documentationJörn Zaefferer2006-12-151-0/+21
|
* Fixed #471Jörn Zaefferer2006-12-111-14/+22
|
* Renamed $.ajax's "before"-option to "beforeSend" to prevent conflict with ↵Jörn Zaefferer2006-12-051-3/+3
| | | | form plugin - may be a good convention to use beforeXXX and afterXXX everytime for callbacks...
* Renamed preprocess to before, for consistency with form pluginJörn Zaefferer2006-12-041-1/+1
|
* Simplified XMLHttpRequest shadow (tested on 5.5, 6 and 7); Introduced ↵Jörn Zaefferer2006-12-041-0/+17
| | | | preprocess callback (#384) - IE seems to fail to send the correct headers
* Fixed serializing arrays (bug #448)Jörn Zaefferer2006-11-301-7/+22
|
* Another attempt to fix the getScript problemJörn Zaefferer2006-11-211-15/+9
|
* Fix for bug #407, yet to be testedJörn Zaefferer2006-11-201-1/+1
|
* Testsuite 2.0Jörn Zaefferer2006-11-181-0/+271