jaubourg
|
2d0bc7ce72
|
Moves Deferred-related code into a separate module. Context handling has been simplified in _Deferred.resolve and jQuery.when has been refactored for clarity (and minor optimization).
|
2011-03-03 19:38:06 +01:00 |
|
John Resig
|
3f036281dd
|
No need to duplicate Sizzle tests, just run them directly from Sizzle.
|
2011-02-10 16:19:35 -05:00 |
|
Colin Snover
|
e2941d5a98
|
Update unit tests with a leak detection mechanism for the various jQuery globals and fix all leaks in the tests.
|
2011-01-09 15:58:47 -06:00 |
|
jaubourg
|
c43b078c69
|
Renamed src/transports to src/ajax (in case we need prefilters in the future and to avoid a separate prefilters directory).
|
2011-01-06 01:17:31 +01:00 |
|
jaubourg
|
981d1e08eb
|
Removed re-usability from jXHR object (no more open, send & onreadystatechange support). Streamlined the implementation and put it back into ajax.js (removed xhr.js in the process). Went back to a more simple & direct approach to options handling (keeping much room to further minification-related optimizations). Code is cleaner, smaller & faster. Removed & edited unit tests accordingly. All build files have had xhr.js removed.
|
2010-12-31 04:13:40 +01:00 |
|
Colin Snover
|
1a3fd3329d
|
Speed up & compatibility improvements for new clone mechanism in IE.
|
2010-12-12 19:23:22 -06:00 |
|
jaubourg
|
ab3ba4a812
|
Rewrite of the Ajax module by Julian Aubourg. Some (dated) details can be found here: http://oksoclap.com/6Y26bm1ZsB more details are forthcoming. Fixes #7195.
|
2010-12-09 13:34:28 -05:00 |
|
jeresig
|
d9a3e0080a
|
Fix broken selector code from last commit.
|
2010-10-22 01:48:32 -04:00 |
|
jeresig
|
424500bcf0
|
Make sure that +, >, ~ leading, rooted, selectors go to the old engine. Thanks to @rkatic for the catch! Fixes #7220.
|
2010-10-22 01:18:58 -04:00 |
|
Paul Irish
|
97dfa0d5a8
|
fadeToggle(). as suggested by Karl Swedberg in his jQcon talk. patched live! omg
|
2010-10-17 14:26:32 -04:00 |
|
Colin Snover
|
5057ff9f43
|
IE6 will shrink-wrap elements with layout instead of allowing content to flow outside of the border-box. Add a test for this and do not remove the overflow property after an animation in IE6.
|
2010-10-05 14:53:35 -05:00 |
|
Colin Snover
|
0cdcef5b36
|
Update $.fn.animate to change display mode only when necessary (inline, non-floated elements), and to use a more proper display mode for those elements. Fixes #2185.
|
2010-10-05 13:28:43 -05:00 |
|
John Resig
|
879799fe95
|
Make sure that ambiguous val() selection works correctly.
|
2010-09-28 08:36:28 -07:00 |
|
Dave Methvin
|
2c4b20809e
|
Don't have .val() return selected-but-disabled options, or selected options inside a disabled optgroup. Doesn't change the .val() returned for a disabled select. Fixes #3240, adapted from Nathan Hammond's patch there.
|
2010-09-24 17:26:22 -04:00 |
|
Karl Swedberg
|
1f667aa035
|
Added full support for easing in all shorthand effects methods (hide, show, toggle, fadeTo, slideUp, etc.). Previously, these methods could only be used with two of the three (speed, easing, callback) arguments, or, in the case of fadeTo, 3 of the 4 (speed, opacity, easing, callback) arguments. Added three more sets of tests to the series of "Chain" tests. Fixes #7014
|
2010-09-22 11:30:54 -04:00 |
|
jeresig
|
fa80693c4a
|
Changed the order of the tests to run in the same order in which they're specified in the Makefile (fixed a dimensions test bug that popped up as a result).
|
2010-03-23 12:31:40 -04:00 |
|
jeresig
|
8effe3a7de
|
Made it so that you no longer need to build jQuery in order to run the test suite (but you'll still need a checkout of QUnit and Sizzle, at least).
|
2010-03-23 12:12:16 -04:00 |
|
John Resig
|
f0505c6d75
|
Bringing Sizzle test suite changes back in.
|
2009-12-19 17:50:56 -05:00 |
|
jeresig
|
1c7d3155f0
|
Move the test results list above the test HTML to avoid test suite layout weirdness.
|
2009-12-18 19:47:53 -05:00 |
|
jeresig
|
b70872f70d
|
Renamed the 'fx' module to 'effects'. Should've been done a long time ago.
|
2009-12-18 11:01:19 -05:00 |
|
John Resig
|
ebad701751
|
Split the queue code out from data.js into a dedicated queue.js file (also split tests accordingly).
|
2009-12-06 17:19:33 -05:00 |
|
John Resig
|
920238d485
|
Pull in QUnit using a submodule. In order to build jQuery (and run the tests) you'll need to do 'git submodule init' and 'git submodule update' after checkout.
|
2009-10-22 21:39:41 -04:00 |
|
John Resig
|
805832afc7
|
Updated the jQuery suite to use the updated QUnit CSS styling.
|
2009-09-29 22:48:25 +00:00 |
|
John Resig
|
3b5de9df40
|
Updated the jQuery test suite to use the new QUnit file names.
|
2009-09-29 22:25:02 +00:00 |
|
John Resig
|
0256edbd6f
|
Moved the jQuery-specific test suite CSS into a separate file.
|
2009-09-29 22:09:21 +00:00 |
|
John Resig
|
b996026e38
|
Adapted the jQuery test suite to handle the toolbar moving inline.
|
2009-09-29 21:40:17 +00:00 |
|
John Resig
|
b0306cc3a6
|
Updated the jQuery suite to use the new 'qunit-' prefix on specific elements.
|
2009-09-29 21:34:12 +00:00 |
|
John Resig
|
8df82d2b04
|
Moved the init test script off into a separate file.
|
2009-09-29 18:06:16 +00:00 |
|
Brandon Aaron
|
6504751006
|
integrated offset tests into main test suite. offset tests now use iframes instead of popups
|
2009-07-17 22:15:37 +00:00 |
|
John Resig
|
89d2f1e851
|
Reverting accidental test suite corruption from the Sizzle merge.
|
2009-05-20 21:59:24 +00:00 |
|
John Resig
|
45729831b1
|
Removed some cases of strict errors.
|
2009-05-20 21:52:47 +00:00 |
|
Brandon Aaron
|
a4a58a3836
|
prevent fx test html from showing in IE
|
2009-05-16 17:39:22 +00:00 |
|
Brandon Aaron
|
ec3ebd3e8a
|
opacity is now retrieved from stylesheet in IE. fixes #3981
|
2009-05-14 14:44:31 +00:00 |
|
Brandon Aaron
|
d7d908b05a
|
decoupling styles retrieval from the attr method
|
2009-03-22 23:25:03 +00:00 |
|
Brandon Aaron
|
7c04a64016
|
breaking jquery out into smaller modules. added attributes.js, manipulation.js, and traversing.js
|
2009-03-18 21:15:38 +00:00 |
|
Brandon Aaron
|
e73990a566
|
fix for #3688, setting type attribute on button causes IE to throw error
|
2009-03-17 22:27:25 +00:00 |
|
John Resig
|
ca79d866fe
|
Made it so that search input elements are now serialized. Fixes bug #4107.
|
2009-02-18 19:43:14 +00:00 |
|
John Resig
|
f89f5eb61f
|
Reorganized some of the animation tests to work with the new hide/show changes.
|
2009-02-17 15:54:27 +00:00 |
|
John Resig
|
f0189d6181
|
Fixed the issue where weird characters were being used in ID selectors. Fixes jQuery bug #3913.
|
2009-02-15 22:46:54 +00:00 |
|
John Resig
|
21dde30348
|
Provide a graceful failover for [name=foo] queries that are looking for non-input/iframe/form elements. Fixes jQuery bug #4081.
|
2009-02-14 22:24:55 +00:00 |
|
John Resig
|
9aa0c69c43
|
Fixed bubbling of live events (if an inner element handles an event first - and stops progatation - then the parent event doesn't encounter the event). Thanks to Irae for the patch. Fixes bug #3980.
|
2009-02-09 23:29:57 +00:00 |
|
John Resig
|
f9a5849723
|
Now handle the case where Safari's querySelectorAll fails on uppercase characters in quirks mode. Added a test to check for it and re-worked some of the existing tests to better handle document order issues. Fixes jQuery bug #3840.
|
2009-01-21 22:57:07 +00:00 |
|
John Resig
|
aa7616cf9a
|
Added support for a[name^='foo['] style selectors. Fies jQuery bug #3928.
|
2009-01-20 19:44:08 +00:00 |
|
John Resig
|
96152559e0
|
Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ticket #3916.
|
2009-01-19 21:40:23 +00:00 |
|
John Resig
|
8e8d7ade43
|
Merged some recent fixes in from Sizzle.
|
2009-01-19 18:09:11 +00:00 |
|
John Resig
|
6dc30ae7f6
|
Merged Sizzle changes back into jQuery.
|
2009-01-13 16:40:19 +00:00 |
|
John Resig
|
122b672f70
|
Landed cross-browser support for tabIndex, by Scott, closes ticket #3649.
|
2009-01-05 17:34:42 +00:00 |
|
John Resig
|
4694e537bc
|
Forgot to merge in some of the new tests from Sizzle.
|
2009-01-05 01:24:14 +00:00 |
|
Ariel Flesler
|
4afa608351
|
jquery data: Closes #3539. Exposed jQuery.queue. Moved all the data and queue functions to their own module. Made the dequeue function more generic(designed to be used on functions). Closes #3748. Reverted a previous modification.
|
2008-12-30 02:31:26 +00:00 |
|
Jörn Zaefferer
|
db63af1068
|
core/test: replaced local qunit copy with qunit via svn:externals; inlined styles specific to polluted.php; kept testrunner.js with just the noConflict call
|
2008-08-08 17:42:52 +00:00 |
|