Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update unit tests with a leak detection mechanism for the various jQuery ↵ | Colin Snover | 2011-01-09 | 1 | -1/+1 |
| | | | | globals and fix all leaks in the tests. | ||||
* | Renamed src/transports to src/ajax (in case we need prefilters in the future ↵ | jaubourg | 2011-01-06 | 1 | -3/+3 |
| | | | | and to avoid a separate prefilters directory). | ||||
* | Removed re-usability from jXHR object (no more open, send & ↵ | jaubourg | 2010-12-31 | 1 | -1/+0 |
| | | | | 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. | ||||
* | Speed up & compatibility improvements for new clone mechanism in IE. | Colin Snover | 2010-12-12 | 1 | -1/+1 |
| | |||||
* | Rewrite of the Ajax module by Julian Aubourg. Some (dated) details can be ↵ | jaubourg | 2010-12-09 | 1 | -0/+4 |
| | | | | found here: http://oksoclap.com/6Y26bm1ZsB more details are forthcoming. Fixes #7195. | ||||
* | Fix broken selector code from last commit. | jeresig | 2010-10-22 | 1 | -23/+42 |
| | |||||
* | Make sure that +, >, ~ leading, rooted, selectors go to the old engine. ↵ | jeresig | 2010-10-22 | 1 | -42/+23 |
| | | | | Thanks to @rkatic for the catch! Fixes #7220. | ||||
* | fadeToggle(). as suggested by Karl Swedberg in his jQcon talk. patched live! omg | Paul Irish | 2010-10-17 | 1 | -0/+3 |
| | |||||
* | IE6 will shrink-wrap elements with layout instead of allowing content to ↵ | Colin Snover | 2010-10-05 | 1 | -21/+21 |
| | | | | flow outside of the border-box. Add a test for this and do not remove the overflow property after an animation in IE6. | ||||
* | Update $.fn.animate to change display mode only when necessary (inline, ↵ | Colin Snover | 2010-10-05 | 1 | -2/+2 |
| | | | | non-floated elements), and to use a more proper display mode for those elements. Fixes #2185. | ||||
* | Make sure that ambiguous val() selection works correctly. | John Resig | 2010-09-28 | 1 | -0/+5 |
| | |||||
* | Don't have .val() return selected-but-disabled options, or selected options ↵ | Dave Methvin | 2010-09-24 | 1 | -0/+9 |
| | | | | inside a disabled optgroup. Doesn't change the .val() returned for a disabled select. Fixes #3240, adapted from Nathan Hammond's patch there. | ||||
* | Added full support for easing in all shorthand effects methods (hide, show, ↵ | Karl Swedberg | 2010-09-22 | 1 | -0/+2 |
| | | | | 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 | ||||
* | Changed the order of the tests to run in the same order in which they're ↵ | jeresig | 2010-03-23 | 1 | -9/+10 |
| | | | | specified in the Makefile (fixed a dimensions test bug that popped up as a result). | ||||
* | Made it so that you no longer need to build jQuery in order to run the test ↵ | jeresig | 2010-03-23 | 1 | -17/+33 |
| | | | | suite (but you'll still need a checkout of QUnit and Sizzle, at least). | ||||
* | Bringing Sizzle test suite changes back in. | John Resig | 2009-12-19 | 1 | -0/+5 |
| | |||||
* | Move the test results list above the test HTML to avoid test suite layout ↵ | jeresig | 2009-12-18 | 1 | -2/+1 |
| | | | | weirdness. | ||||
* | Renamed the 'fx' module to 'effects'. Should've been done a long time ago. | jeresig | 2009-12-18 | 1 | -1/+1 |
| | |||||
* | Split the queue code out from data.js into a dedicated queue.js file (also ↵ | John Resig | 2009-12-06 | 1 | -0/+1 |
| | | | | split tests accordingly). | ||||
* | Pull in QUnit using a submodule. In order to build jQuery (and run the ↵ | John Resig | 2009-10-22 | 1 | -2/+2 |
| | | | | tests) you'll need to do 'git submodule init' and 'git submodule update' after checkout. | ||||
* | Updated the jQuery suite to use the updated QUnit CSS styling. | John Resig | 2009-09-29 | 1 | -2/+2 |
| | |||||
* | Updated the jQuery test suite to use the new QUnit file names. | John Resig | 2009-09-29 | 1 | -2/+2 |
| | |||||
* | Moved the jQuery-specific test suite CSS into a separate file. | John Resig | 2009-09-29 | 1 | -4/+2 |
| | |||||
* | Adapted the jQuery test suite to handle the toolbar moving inline. | John Resig | 2009-09-29 | 1 | -0/+1 |
| | |||||
* | Updated the jQuery suite to use the new 'qunit-' prefix on specific elements. | John Resig | 2009-09-29 | 1 | -3/+3 |
| | |||||
* | Moved the init test script off into a separate file. | John Resig | 2009-09-29 | 1 | -6/+1 |
| | |||||
* | integrated offset tests into main test suite. offset tests now use iframes ↵ | Brandon Aaron | 2009-07-17 | 1 | -0/+1 |
| | | | | instead of popups | ||||
* | Reverting accidental test suite corruption from the Sizzle merge. | John Resig | 2009-05-20 | 1 | -2/+9 |
| | |||||
* | Removed some cases of strict errors. | John Resig | 2009-05-20 | 1 | -9/+2 |
| | |||||
* | prevent fx test html from showing in IE | Brandon Aaron | 2009-05-16 | 1 | -1/+1 |
| | |||||
* | opacity is now retrieved from stylesheet in IE. fixes #3981 | Brandon Aaron | 2009-05-14 | 1 | -0/+3 |
| | |||||
* | decoupling styles retrieval from the attr method | Brandon Aaron | 2009-03-22 | 1 | -0/+1 |
| | |||||
* | breaking jquery out into smaller modules. added attributes.js, ↵ | Brandon Aaron | 2009-03-18 | 1 | -0/+3 |
| | | | | manipulation.js, and traversing.js | ||||
* | fix for #3688, setting type attribute on button causes IE to throw error | Brandon Aaron | 2009-03-17 | 1 | -1/+1 |
| | |||||
* | Made it so that search input elements are now serialized. Fixes bug #4107. | John Resig | 2009-02-18 | 1 | -0/+1 |
| | |||||
* | Reorganized some of the animation tests to work with the new hide/show changes. | John Resig | 2009-02-17 | 1 | -20/+21 |
| | |||||
* | Fixed the issue where weird characters were being used in ID selectors. ↵ | John Resig | 2009-02-15 | 1 | -0/+1 |
| | | | | Fixes jQuery bug #3913. | ||||
* | Provide a graceful failover for [name=foo] queries that are looking for ↵ | John Resig | 2009-02-14 | 1 | -2/+2 |
| | | | | non-input/iframe/form elements. Fixes jQuery bug #4081. | ||||
* | Fixed bubbling of live events (if an inner element handles an event first - ↵ | John Resig | 2009-02-09 | 1 | -0/+5 |
| | | | | and stops progatation - then the parent event doesn't encounter the event). Thanks to Irae for the patch. Fixes bug #3980. | ||||
* | Now handle the case where Safari's querySelectorAll fails on uppercase ↵ | John Resig | 2009-01-21 | 1 | -1/+1 |
| | | | | 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. | ||||
* | Added support for a[name^='foo['] style selectors. Fies jQuery bug #3928. | John Resig | 2009-01-20 | 1 | -1/+1 |
| | |||||
* | Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ↵ | John Resig | 2009-01-19 | 1 | -1/+4 |
| | | | | ticket #3916. | ||||
* | Merged some recent fixes in from Sizzle. | John Resig | 2009-01-19 | 1 | -1/+1 |
| | |||||
* | Merged Sizzle changes back into jQuery. | John Resig | 2009-01-13 | 1 | -0/+1 |
| | |||||
* | Landed cross-browser support for tabIndex, by Scott, closes ticket #3649. | John Resig | 2009-01-05 | 1 | -0/+14 |
| | |||||
* | Forgot to merge in some of the new tests from Sizzle. | John Resig | 2009-01-05 | 1 | -0/+7 |
| | |||||
* | jquery data: Closes #3539. Exposed jQuery.queue. Moved all the data and ↵ | Ariel Flesler | 2008-12-30 | 1 | -0/+1 |
| | | | | queue functions to their own module. Made the dequeue function more generic(designed to be used on functions). Closes #3748. Reverted a previous modification. | ||||
* | core/test: replaced local qunit copy with qunit via svn:externals; inlined ↵ | Jörn Zaefferer | 2008-08-08 | 1 | -1/+2 |
| | | | | styles specific to polluted.php; kept testrunner.js with just the noConflict call | ||||
* | jquery core: closes #2652. val() supports option elements, also simplified ↵ | Ariel Flesler | 2008-07-23 | 1 | -0/+1 |
| | | | | the code. | ||||
* | test runner: the changes are: | Ariel Flesler | 2008-05-28 | 1 | -1/+6 |
| | | | | | | | - 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. |