aboutsummaryrefslogtreecommitdiffstats
path: root/build/test/data
Commit message (Collapse)AuthorAgeFilesLines
* Reorganzing the jQuery source (first phase).John Resig2007-09-0816-539/+0
|
* Added support for:John Resig2007-09-031-0/+10
| | | | | | | | | | | | | - 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 });
* Make it so that you can filter tests by keyword.John Resig2007-08-311-1/+1
|
* Added a test case for "purple include", fixed a bug.John Resig2007-08-251-0/+3
|
* Complete overhaul of the Ajax test suite, it's now passing in all browsers. ↵John Resig2007-08-196-21/+36
| | | | | | | | | | 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).
* The test for underscore selectors broke under Opera, so the element is now ↵John Resig2007-07-301-0/+1
| | | | loaded via Ajax and tested. (bug #1084)
* Integrated the custom fx test suite into the main test suite. All tests are ↵John Resig2007-07-292-1/+102
| | | | now run automatically. Removed the old suite, as it was no longer needed.
* Got some XHR tests to run, still some hanging threads (need to investigate). ↵John Resig2007-07-092-0/+2
| | | | Started moving some Ajax tests away from using PHP (more portable this way). Fixed a number of XHR env bugs.
* use jquery for dblclick handler to access event.targetJörn Zaefferer2007-06-201-2/+2
|
* Removed useless safari workarounds, added rerun-single-test feature: just ↵Jörn Zaefferer2007-06-141-13/+13
| | | | doubleclick on a single test to execute that one, use browser's back button get back to executing all
* Query now throws no warnings under strict mode in Firefox (ticket #922). In ↵John Resig2007-04-291-11/+33
| | | | fixing this, revision [1771] was discovered and reverted (no API changes are being added in at this time), and a couple un-functioning test cases were fixed (array comparisions were being done for objects).
* Added a number of additional speed gains (we now hold our own against Dojo ↵John Resig2007-03-261-4/+3
| | | | and DOMQuery), touched up some of the selector code, fixed some minor bugs, fixed a bug with triggerEvent in Opera, fixed some more test case bugs.
* Cleaned up a lot of the test suite - reorganized and renamed tests. Added a ↵John Resig2007-03-251-1/+21
| | | | new triggerEvent() method to the test runner to help us better test actual event interactions.
* Merged my speed improvements into the jQuery core (is actually 200b smaller ↵John Resig2007-03-241-3/+19
| | | | now!). Additionally, added in some better reporting to the test suite, and fixed a bug with how selector tests were performmed.
* Disabled the test suite in Safari.John Resig2007-02-281-2/+3
|
* Added equals helper for easier debugging of failed tests, soon to be used ↵Jörn Zaefferer2007-02-061-1/+19
| | | | more often, see coreTest.js attr(String) for an example
* Fix for #907Jörn Zaefferer2007-02-051-2/+2
|
* Updated testsuite: To prevent crashes in Safari, each test waits for 250 ↵Jörn Zaefferer2007-01-141-1/+15
| | | | milliseconds before running the next
* Fixed eval code (Thanks Fil)Jörn Zaefferer2007-01-101-1/+1
|
* Disable error reporting in PHP test filesJörn Zaefferer2007-01-102-0/+2
|
* Add new test fileMike Alsup2007-01-011-0/+12
|
* Modified tests to show #746Jörn Zaefferer2006-12-312-1/+4
|
* Improved Mikes hack to ease testing against IE cacheJörn Zaefferer2006-12-312-1/+14
|
* Implemented global ajax settings - no documentation yetJörn Zaefferer2006-12-221-2/+2
|
* A few corrections to the testsuite to imrove the failure testingJörn Zaefferer2006-12-211-3/+4
|
* Implemented a better error handling for ajax requests. Exceptions caused by ↵Jörn Zaefferer2006-12-211-1/+4
| | | | dropping connections are now handled, too.
* Renamed $.ajax's "before"-option to "beforeSend" to prevent conflict with ↵Jörn Zaefferer2006-12-051-1/+1
| | | | form plugin - may be a good convention to use beforeXXX and afterXXX everytime for callbacks...
* Introduced before callback (#384) (updated test data)Jörn Zaefferer2006-12-041-0/+6
|
* Another attempt to fix the getScript problemJörn Zaefferer2006-11-212-2/+3
|
* Improved testsuite (pass/fail indicator already exists in markup)Jörn Zaefferer2006-11-202-4/+4
|
* Testsuite 2.0Jörn Zaefferer2006-11-182-44/+72
|
* Fixed an issue with getJSON (type was not correctly passed on when data was ↵Jörn Zaefferer2006-11-171-2/+2
| | | | ommited); Added more options to $.ajax to provide more flexibility (bug #371)
* Added visual pass/fail indicator (JUnit/Eclipse style)Jörn Zaefferer2006-11-152-5/+10
|
* Modified test for load(); added fix for trigger, where it modifies data ↵Jörn Zaefferer2006-11-092-1/+4
| | | | passed to it, which causes ugly side-effects
* Refactored ajax module: Dropped internal arguments from ajax(); Modified ↵Jörn Zaefferer2006-11-032-4/+5
| | | | testsuite to improve display
* Modified core and form test suites to use a single stylesheet; Modified ↵Jörn Zaefferer2006-10-261-0/+8
| | | | form.js to use :submit instead of [@type=submit] and :image...
* Added test for #174; Modified failing (IE) tests for findJörn Zaefferer2006-10-131-0/+24
|
* Fixed #216, added several tests for ajax module and fixed more stuff ↵Jörn Zaefferer2006-10-131-0/+4
| | | | revealed by those; Reverted Johns change for each (changeset 433), caused way too much trouble
* Added 2 of 3 fixes of #164Jörn Zaefferer2006-10-111-6/+2
|
* Fixed bug in testsuite, tried to fix problem with :selected in Opera 8.54: ↵Jörn Zaefferer2006-10-081-3/+4
| | | | It does not work the default selections
* I had to put the check for 'typeof console != "undefined"' back in, ↵Jörn Zaefferer2006-10-031-1/+1
| | | | otherwise IE complains about console not being defined.
* Fixed minor bug with Safari and the test suite.John Resig2006-10-031-1/+1
|
* Refactored and fixed test suite to run async testsJörn Zaefferer2006-09-304-1/+32
|
* Clear timeout (prevents freezing of test suite when async tests fail) when ↵Jörn Zaefferer2006-09-191-1/+4
| | | | start is called
* Refactored test suite to allow async tests (use stop() before starting an ↵Jörn Zaefferer2006-09-192-0/+172
async request, use start() when finished), added test for bug #164