aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/core.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Reworked the .clone() function in IE. Fixes jQuery bugs #3500 (jQuery ↵John Resig2009-02-091-1/+26
| | | | expandos were causing extra elements to appear from using .html() cloning), #3254 (Mis-match in clone result length causes problem), and #2845 (Cloning an <object/> causes exceptions to be thrown).
* Made sure that .removeClass(null) doesn't throw an exception. Fixes #3847.John Resig2009-01-201-2/+6
|
* Re-worked the logic for where .selector and .context are added for ID ↵John Resig2009-01-201-1/+5
| | | | selectors (especially ones that aren't found). Fixes jQuery bug #3833.
* Added two more tweaks for XHTML core tests.John Resig2009-01-191-2/+2
|
* Made some tweaks to the core tests so that they'll run better under XHTML.John Resig2009-01-191-5/+5
|
* Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ↵John Resig2009-01-191-15/+14
| | | | ticket #3916.
* Only try to wrap the element if it's not disconnected, fixed #3828.John Resig2009-01-121-1/+6
|
* Fixed an issue with parentNode being accessed in attr() on disconnected DOM ↵John Resig2009-01-121-1/+3
| | | | elements.
* Prevented non-script <script> blocks from executing, fixing #3733.John Resig2009-01-111-1/+5
|
* .closest() with positional selectors wasn't worked as expected.John Resig2009-01-101-1/+4
|
* Fixed an issue with script nodes being removed incorrectly, fixes #3737.John Resig2009-01-101-1/+4
|
* testrunner: Removing every global variable leaked within (and outside) ↵Ariel Flesler2009-01-091-12/+11
| | | | tests. Some were deleted and some saved within the jQuery namespace.
* Selector state wasn't being passed along on a cloned jQuery object.John Resig2009-01-081-1/+6
|
* Fixed tabindex normalization so that elements that natively support tabbing, ↵Scott González2009-01-071-8/+8
| | | | | | but don't have a tabindex explicitly set return 0 instead of undefined. Removed jQuery.support.tabindex since we're only normalizing non-XML right now and all browsers support tabIndex for HTML documents.
* Simplified the XML clone test.John Resig2009-01-051-4/+6
|
* Simplified the XML selector test (save the result).John Resig2009-01-051-3/+4
|
* Landed cross-browser support for tabIndex, by Scott, closes ticket #3649.John Resig2009-01-051-0/+56
|
* Forgot to merge in some of the new tests from Sizzle.John Resig2009-01-051-1/+1
|
* Landed a proper fix for #3255 - which involves doing createElement instead ↵John Resig2009-01-031-2/+4
| | | | of going through the normal clean method.
* Disabled testing of em-defined borders, need to look back into this issue.John Resig2009-01-021-4/+6
|
* The exact escaping of the text() test isn't important - as long as < is escaped.John Resig2009-01-021-1/+1
|
* Fixed an issue with .not("#foo, bar") not working correctly, closes #3757.John Resig2008-12-311-1/+5
|
* jquery data: Closes #3539. Exposed jQuery.queue. Moved all the data and ↵Ariel Flesler2008-12-301-94/+0
| | | | queue functions to their own module. Made the dequeue function more generic(designed to be used on functions). Closes #3748. Reverted a previous modification.
* jquery core: Closes #1681. jQuery.fn.toggleClass can accept a boolean ↵Ariel Flesler2008-12-251-1/+8
| | | | argument indicating add/remove.
* jquery core: Closes #3255. The div used in jQuery.clean is emptied in the ↵Ariel Flesler2008-12-251-1/+13
| | | | end. Cleaning the parentNode's properties of the elements.
* jquery core: Closes #3641. jQuery.merge stopped looping once a 0 was found.Ariel Flesler2008-12-251-0/+15
|
* Added support for the new .closest() method (very useful for event delegation).John Resig2008-12-221-0/+8
|
* Landing the new Sizzle selector engine. There'll need to be some later ↵John Resig2008-12-201-14/+27
| | | | tweaks (to make the tests a little more pragmatic - especially for document order elements). But it appears to be passing well and that's enough. Closes #3563.
* Fixed line-ending issue.John Resig2008-12-191-1719/+1719
|
* Tweaked mis-numbered makeArray test.John Resig2008-12-191-1/+1
|
* Switched to using DOM Fragments in domManip.John Resig2008-12-191-2/+2
|
* Added selector path logging (creates a trail that plugins can use).John Resig2008-12-191-0/+58
|
* testrunner: re adding the test for a function within isFunction.Ariel Flesler2008-12-161-3/+1
|
* testrunner: fixing tests that were broken due to recent updates to qunit.Ariel Flesler2008-10-181-15/+14
|
* jquery core: closes #3248, #3079, #3026, #3176, #3202, #3129. ↵Ariel Flesler2008-08-121-3/+6
| | | | jQuery.makeArray doesn't support functions anymore. Voiding the conflict with Scriptaculous 1.7.x.
* jquery core: closes #2652. val() supports option elements, also simplified ↵Ariel Flesler2008-07-231-2/+14
| | | | the code.
* jquery core: closes #2968. Simplified isFunction, dropping support for DOM ↵Ariel Flesler2008-07-231-3/+5
| | | | methods and functions like alert() on IE.
* test runner: optimizing a test for speed.Ariel Flesler2008-07-011-6/+9
|
* test runner: recloses #3102. Adding one test for $().eq("1")Ariel Flesler2008-07-011-1/+3
|
* test runner: 2 tests for [5728].Ariel Flesler2008-06-171-1/+5
|
* test runner: adding 2 tests for .val( Number ).Ariel Flesler2008-05-291-5/+11
| | | | Removed a silly test.
* test runner: the changes are:Ariel Flesler2008-05-281-528/+525
| | | | | | | - 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: 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
|
* test runner: improved the shown message of 4 isFunction tests.Ariel Flesler2008-05-141-4/+4
|
* test runner: improved a test and added a missing semicolonAriel Flesler2008-05-121-6/+8
|
* 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: making 2 tests more flexible because they yield a slightly ↵Ariel Flesler2008-05-081-2/+2
| | | | different result on Safari 3, but still acceptable.
* test runner: extra test for makeArray, related to [5481]Ariel Flesler2008-05-071-3/+5
|