aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
...
* | Split apart jQuery.css into jQuery.css (computed values) and jQuery.style ↵jeresig2010-09-162-15/+7
| | | | | | | | (currently set values).
* | Removing leftover debug code.jeresig2010-09-141-1/+1
| |
* | Making some more adjustments to handle auto CSS properties.John Resig2010-09-131-9/+9
| |
* | Make sure that effect tests no longer reference the old CSS methods.jeresig2010-09-091-3/+3
| |
* | Merge branch 'master' of github.com:jquery/jquery into csshooksjeresig2010-09-081-2/+2
|\ \
| * | added "#main" ancestor selector to an "Only Child" and "Last Child" test to ↵Karl Swedberg2010-09-071-2/+2
| | | | | | | | | | | | fix broken tests caused by QUnit commit abfab1713ccb588aa87136b199a9ddc8d1b56c4b (Aug 29, 2010)
* | | Make sure that jQuery works even when the individual modules are loaded ↵jeresig2010-09-081-1/+2
|/ / | | | | | | separately AND jQuery.noConflict(true) is used. Fixes #7011.
* | Fix the order of the element test arguments.John Resig2010-09-021-2/+2
| |
* | Tweaked the name unit tests to specify the exact nodes from which to test ↵John Resig2010-09-021-2/+2
| | | | | | | | against.
* | Remove cases of :contains() where quotes are used - not using quotes follows ↵John Resig2010-09-021-5/+6
| | | | | | | | more closely with the CSS Selector recommendation.
* | Add .width() and .height() unit test for empty sets. Fix .height() test that ↵Brandon Aaron2010-09-011-3/+9
| | | | | | | | was masquerading as a .width() test. Made sure .width() and .height() tests were in-sync (testing the same things).
* | Handle two more cases where comments were missing in the test case, in ↵John Resig2010-08-271-1/+7
| | | | | | | | Blackberry 4.6.
* | Added some tweaks to $.type to handle null and undefined. Added a bunch of ↵John Resig2010-08-271-0/+23
| | | | | | | | unit tests as well.
* | Blackberry 4.6 doesn't maintain comment nodes in the DOM, ignore them in our ↵John Resig2010-08-261-2/+6
| | | | | | | | test cases.
* | Fixed mistake with tweaked iframe manipulation test.John Resig2010-08-261-1/+1
| |
* | Tweak some more jQuery set results in the manipulation tests. Also fixed the ↵John Resig2010-08-261-40/+40
| | | | | | | | order of the expected test results.
* | Tweak more element orders in the manipulation tests. Also differentiate ↵John Resig2010-08-261-8/+10
| | | | | | | | between iframe test failing and the inability to access iframe internals (as in the case of Blackberry).
* | Tweaked manipulation test to ignore order of elements from selector (not ↵John Resig2010-08-261-1/+1
| | | | | | | | important to the test).
* | Tweaked anchor test to work better on Blackberry 4.7.John Resig2010-08-261-1/+2
| |
* | Simplifying some of the .val() test code.John Resig2010-08-231-4/+1
| |
* | Fixing getting/setting classes and makeArray(RegExp) for Blackberry 4.7. ↵John Resig2010-08-231-15/+28
| | | | | | | | Fixes #6930, #6931.
* | Replace usage of the removed global reset() method with QUnit.reset().jzaefferer2010-07-285-84/+84
| |
* | Make sure that .data() events don't bubble, per the discussion in ↵John Resig2010-07-271-1/+7
| | | | | | | | 2e10af143b7eafb7142524f6534a62aee1910bd1. Fixes #6832.
* | Moving jQuery-core specific resets from QUnit to core.jzaefferer2010-07-271-0/+11
| |
* | Ticket #6808. Changes data() so on plain objects, it uses a function to ↵InfinitiesLoop2010-07-231-3/+4
| | | | | | | | contain the cache ID to avoid it being JSON serialized.
* | Ticket #6804. Adds a changeData event.InfinitiesLoop2010-07-201-5/+20
|/
* Fixing request data param issue. Thanks to mislav for the patch. Fixes #5123.jeresig2010-06-142-0/+14
|
* Fix for http://dev.jquery.com/ticket/6451malsup2010-06-151-0/+6
|
* Merge branch 'master' of github.com:jquery/jqueryBrandon Aaron2010-03-274-19/+44
|\
| * Mobile WebKit browsers don't support accessing the scroll position of the ↵jeresig2010-03-251-7/+28
| | | | | | | | document/window.
| * Need to expose the isLocal change globally as well.jeresig2010-03-241-1/+1
| |
| * Temporarily disable ajax tests when running in TestSwam.jeresig2010-03-241-0/+4
| |
| * Use custom events for testing unbind instead of the, potentially ↵jeresig2010-03-241-11/+11
| | | | | | | | conflicting, error event.
| * Adjust isPlainObject test to run in an iframe.jeresig2010-03-241-1/+1
| |
* | Merge branch 'master' of github.com:jquery/jqueryBrandon Aaron2010-03-2312-34/+122
|\|
| * Make sure the offset tests work without a built jQuery file.jeresig2010-03-237-7/+64
| |
| * Update other remote test URLs as well.jeresig2010-03-231-4/+4
| |
| * Strip off filename and query string for JSONP Remote test.jeresig2010-03-231-1/+1
| |
| * Update the TestSwarm URL to point to the new jQuery swarm location.jeresig2010-03-231-1/+1
| |
| * Changed the order of the tests to run in the same order in which they're ↵jeresig2010-03-232-10/+11
| | | | | | | | specified in the Makefile (fixed a dimensions test bug that popped up as a result).
| * Handle auto-running of the TestSwarm injection script in the test suite.jeresig2010-03-231-0/+10
| |
| * Made it so that you no longer need to build jQuery in order to run the test ↵jeresig2010-03-232-21/+41
| | | | | | | | suite (but you'll still need a checkout of QUnit and Sizzle, at least).
* | Fixed an issue with setting offset of absolutely positioned element that has ↵Brandon Aaron2010-03-222-3/+11
| | | | | | | | no position values ("auto"). Fixes #5781.
* | Added unit tests for setting offset one property at a time and added radix ↵Brandon Aaron2010-03-221-7/+12
|/ | | | to parseInt calls
* Rewrote the live/delegate submit tests to be more generic.jeresig2010-03-091-20/+6
|
* Make sure that special remove and teardown events get called when .die() is ↵jeresig2010-03-091-10/+70
| | | | used. Additionally made sure that default actions are triggered when namespaced events are used. Fixes #6202 and #6250.
* Landing a faster trim method. Based upon the work by Travis Hardiman and ↵jeresig2010-03-091-6/+12
| | | | DBJDBJ. More details here: http://forum.jquery.com/topic/faster-jquery-trim Fixes #2279, #4452, and #4835.
* I take that back! It was a bug, but the cache had to be triggered and a ↵jeresig2010-03-051-5/+6
| | | | collection of cached nodes had to be passed in (an odd case to be sure). Fixes #6227.
* Attempted to fix #6227, not entirely sure if it's a problem as I'm having a ↵jeresig2010-03-051-1/+9
| | | | hard time reproducing it. Regardless, the change is harmless and potentially even speeds up appendTo, etc. slightly.
* Added in Ben Alman's proposed event.namespace property (the property holds ↵jeresig2010-03-021-11/+25
| | | | the namespaces specified in a call to trigger). Additionally fixes namespaces with .live(). Fixes #6208 and #6209.