aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* test runner: the changes are:Ariel Flesler2008-05-2811-837/+863
| | | | | | | - Replaced all the $ for jQuery in the tests and suite. - Added a noConflict to testrunner.js. - Modified the test for noConflict() so that it still work. - Added jQuery 1.2.1 and 1.2.3 to otherlibs.
* test runner: adding a new test page called 'polluted'. Where one can choose ↵Ariel Flesler2008-05-2813-2/+10016
| | | | to pre-include other libraries and run the test suite with them.
* test runner: Adding type="text/javascript" to a script tag (trivial).Ariel Flesler2008-05-281-1/+2
|
* test runner: a test for load() with a hash of data, and another for load() ↵Ariel Flesler2008-05-272-0/+36
| | | | | | with a string of data (#1516). It includes a php that dumps all the GET and POST vars to html elements, where the key makes the id, and the value the text.
* test runner: A test was failing on Opera 9.50. Not a bug, just made the test ↵Ariel Flesler2008-05-241-1/+1
| | | | less specific and it passed.
* test runner: adding more tests for attr(). Related to [5574] and [5683].Ariel Flesler2008-05-241-107/+128
|
* Updating unit tests for offsetBrandon Aaron2008-05-154-2/+5
|
* Added some unit tests for position method. Fixed issue with position in IE.Brandon Aaron2008-05-156-0/+62
|
* test runner: improved the shown message of 4 isFunction tests.Ariel Flesler2008-05-141-4/+4
|
* Updating outerWidth unit test to use absolute positionBrandon Aaron2008-05-131-1/+2
|
* test runner: improved a test and added a missing semicolonAriel Flesler2008-05-121-6/+8
|
* test runner: when errors are thrown in a test, the message is successfully ↵Ariel Flesler2008-05-121-1/+1
| | | | show on all browsers.
* jquery core: reverted qunit introduction until build scripts are updatedJörn Zaefferer2008-05-084-4/+449
|
* jquery testsuite: switch to qunitJörn Zaefferer2008-05-084-449/+4
|
* test runner: added 2 tests for [5500]Ariel Flesler2008-05-081-4/+11
|
* test runner: extra tests for $.fn.add enabled by [5503] and a small fix for ↵Ariel Flesler2008-05-081-2/+11
| | | | an html() test.
* test runner: extra test case, [5501]Ariel Flesler2008-05-081-3/+7
|
* test runner: making 2 tests more flexible because they yield a slightly ↵Ariel Flesler2008-05-081-2/+2
| | | | different result on Safari 3, but still acceptable.
* ajax test: Removed test for extending with null.Scott González2008-05-071-6/+2
|
* test runner: extra test for makeArray, related to [5481]Ariel Flesler2008-05-071-3/+5
|
* jquery ajax: support for dynamic data arguments, see #2806; added ↵Jörn Zaefferer2008-05-062-0/+17
| | | | test/data/echoQuery.php for easier testing of sent query strings
* jquery testrunner: reset $.ajaxSettings after each run to prevent ↵Jörn Zaefferer2008-05-061-0/+2
| | | | sideeffects between tests
* test runner: translated all the ok() with '==' to equals(), as it gives more ↵Ariel Flesler2008-05-065-234/+234
| | | | information on failures.
* test runner: adding some tests that were missing for the $ constructor.Ariel Flesler2008-05-061-1/+10
|
* jquery testrunner: reset global events after each run, speeds up a test run ↵Jörn Zaefferer2008-05-051-0/+1
| | | | for ajax from 16s to 10s (test/?ajax), kudos to Ariel
* core: Fixed #2605: .data() now accepts null as a value.Scott González2008-05-031-3/+8
|
* core: Fixed #2605: .data() now accepts null as a value.Scott González2008-05-031-1/+5
|
* core: Fixed #2600: jQuery.extend no longer skips over null properties.Scott González2008-05-021-2/+12
|
* test runner: adding a test case for $.fn._toggle with more than 2 functions.Ariel Flesler2008-04-291-2/+32
|
* test runner: voided the failing tests for jQuery.map, that belong to an ↵Ariel Flesler2008-04-291-1/+3
| | | | unapproved proposal(#2616).
* test runner: added another test for makeArray.Ariel Flesler2008-04-291-1/+3
|
* Merged dimensions with coreBrandon Aaron2008-04-292-0/+86
|
* jquery core: tests for #2616Jörn Zaefferer2008-04-281-1593/+1619
|
* jquery core: fixed makeArray to recognize the window (has length)Ariel Flesler2008-04-251-5/+9
| | | | test runner: updated the tests for makeArray
* - Adding the enhancements to the test runner, to accept multiple(and ↵Ariel Flesler2008-04-241-5/+23
| | | | negative) filters from the GET variables, as specified in the ticket #2738.
* jquery core: Patch from #2619 applied, making makeArray more flexible and ↵Jörn Zaefferer2008-04-241-1/+1
| | | | faster; removed hint to ticket from (previously failing) test
* testrunner: refactored url-test-filter, still regex basedJörn Zaefferer2008-04-241-2/+6
|
* - adding the tests for the changes to $.makeArray, proposed at #2619 Ariel Flesler2008-04-221-0/+27
|
* jquery testrunner: accept regexp to select tests, eg. /test/?^core|^selector ↵Jörn Zaefferer2008-04-221-1/+1
| | | | to run both core and selector module
* jquery.ajax: improvement for #2688, added testJörn Zaefferer2008-04-221-0/+21
|
* jquery.event: Patch for #2708Jörn Zaefferer2008-04-221-1/+9
|
* Trigger onclick handlers of linksBrandon Aaron2008-04-211-1/+8
|
* You can now overwrite values returned from .data() with .bind("getData") - ↵John Resig2008-02-031-4/+20
| | | | returning a value will override any bound value on that element.
* Tweaked the .data() event triggering - it now triggers a single 'setData' ↵John Resig2008-02-031-12/+12
| | | | event, passing in a key value pair of what was changed.
* Added support for .unbind(".test") to unbind all namespaced events on an ↵John Resig2008-02-031-0/+10
| | | | element.
* Added $().data(), $().removeData(), and .bind("click!"). .data() and ↵John Resig2008-02-031-0/+51
| | | | .removeData() handle namespaced data, .data() triggers a "set-KEY" event on all modified elements, and .bind("click!") only triggers a click (and no namespaced events).
* Fix #2184 by using the jQuery.clean() function instead of a direct innerHTML ↵David Serduke2008-01-231-1/+13
| | | | assignment in the clone() function for IE.
* Fixed #2174 by removing the s.dataType == "json" check for possible cross ↵David Serduke2008-01-171-4/+4
| | | | domain since it causes absolute urls to use a <script> tag ajax retrieval even though absolute urls work fine for retrieving local data. Cross-domain jsonp will still work since the $.ajax() function actually changes the s.dataType to "script" before it reaches this check in cases where it is s.dataType == "jsonp" or s.dataType == "json" and a parameter has =? in it.
* Discontinued the test for $(form.elements).John Resig2008-01-141-2/+5
|
* Excluded a couple Ajax tests from running locally.John Resig2008-01-141-1/+8
|