aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/core.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix #10478. Replace jQuery.isNaN with jQuery.isNumeric.Dave Methvin2011-10-111-0/+40
| | | | Thanks to Christian C. Salvadó for the unit tests!
* Landing pull request 331. Add support for registering jQuery as an AMD ↵jrburke2011-09-191-0/+6
|\ | | | | | | | | | | | | | | module. Fixes #7102. More Details: - https://github.com/jquery/jquery/pull/331 - http://bugs.jquery.com/ticket/7102
| * Add support for registering jQuery as an AMD module. Only does so if the AMD ↵jrburke2011-04-161-1/+7
| | | | | | | | loader indicates it has special allowances for multiple versions of jQuery being loaded in a page.
* | Allow second argument to be passed to array.indexOf. Fixes #9453.timmywil2011-09-191-0/+36
| |
* | Merge pull request #445 from rwldrn/9897Dave Methvin2011-08-251-1/+8
|\ \ | | | | | | Fixes #9897. Wrap obj.constructor test in try/catch to avoid problems with host objects. Thanks to bkrausz.
| * | Wrap obj.constructor test in try/catch. Thanks to bkrausz. Fixes #9897Rick Waldron2011-07-251-1/+8
| | |
* | | Merge pull request #465 from anton-ryzhov/masterDave Methvin2011-08-251-0/+10
|\ \ \ | | | | | | | | Fixes #10076. $.inArray crashes IE6 and Chrome if second argument is `null` or `undefined` (Thanks anton-ryzhov!)
| * | | Unit test for this caseAnton Ryzhov2011-08-171-0/+10
| |/ / | | | | | | | | | Codestyle fixes
* | | Prioritize #id over <tag> to avoid XSS via location.hash (#9521)Dave Methvin2011-08-231-0/+18
| | |
* | | Landing pull request 463. Fixes #9572. Don't camelize the `-ms-` prefix ↵dmethvin2011-08-171-2/+7
|/ / | | | | | | | | | | | | | | because Microsoft didn't. A Fixes #9572. More Details: - https://github.com/jquery/jquery/pull/463 - http://bugs.jquery.com/ticket/9572
* | Fixes #9255: xml parsing error in $.parseXML is now properly detected for ↵jaubourg2011-07-231-2/+22
| | | | | | | | all browsers. Unit test added.
* | Landing pull request 383. Relocating jQuery.camelCase to core; Fixes #9368.rwldrn2011-05-251-0/+14
| | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/383 - http://bugs.jquery.com/ticket/9368
* | Make sure that empty nodelists continue to map properly. Fixes #8993.John Resig2011-05-021-1/+7
| |
* | Change check for skipping the initial quickExpr RegExp check. Fixes #8984.John Resig2011-05-021-1/+12
| |
* | Remove unnecessary usage of Function.prototype.bind (#7783) but maintain ↵John Resig2011-04-171-1/+4
| | | | | | | | API. Also fix bug with proxy failing when a name is provided. Fixes #8893.
* | Switch QUnit div from depreceted #main to #qunit-fixturetimmywil2011-04-171-39/+39
|/
* merge with master and resolve more conflictslouisremi2011-04-121-1/+8
|\
| * Merge branch 'bug_4366' of https://github.com/jboesch/jquery into ↵jeresig2011-04-121-1/+8
| |\ | | | | | | | | | jboesch-bug_4366
| | * Bug 4366; fixing $.each(document.styleSheets) from throwing errors in IEJordan Boesch2011-03-301-1/+8
| | |
* | | second batchlouisremi2011-04-111-69/+69
|/ /
* | Merge branch 'proxy-native-bind' of https://github.com/gf3/jquery into ↵jeresig2011-04-101-3/+12
|\ \ | | | | | | | | | gf3-proxy-native-bind
| * | added: Backcompatibility with old proxy syntax.Gianni Chiappetta2011-01-211-1/+5
| | |
| * | Merge branch 'master' into proxy-native-bindGianni Chiappetta2011-01-211-24/+322
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: (194 commits) Revert "Make sure that focusin/focusout bubbles in non-IE browsers." This was causing problems with the focusin event, see: #7340. Replaces "text in-between" technique with a full-fledged one-level transitive search for converters (unit tests added). Also cleans up auto dataType determination and adds converter checks in order to guess the best dataType possible. Moves determineResponse logic into main ajax callback. Puts responseXXX fields definitions into ajaxSettings. Removes misleading comment. Bring jQuery('#id') and jQuery('body') logic back into core (while leaving it in Sizzle at the same time). Was causing too much of a performance hit to leave it all to Sizzle. Renames Deferred's fire and fireReject methods as resolveWith and rejectWith respectively. Fix typo in regex tweak from previous commit. Renames determineDataType as determineResponse. Makes it more generic as a first step into integrating the logic into the main ajax done callback. Also fixes some comments in ajax/xhr.js. Move jQuery(...) selector speed-up logic into Sizzle(...) qSA handling. Additionally add in a new catch for Sizzle('.class') (avoid using qSA and use getElementsByClassName instead, where applicable). Revises the way arguments are handled in ajax. Makes sure statusCode callbacks are ordered in the same way success and error callbacks are. Unit tests added. Cleans up and simplifies code shared by ajaxPrefilter and ajaxTransport. Removes chainability of ajaxSetup, ajaxPrefilter and ajaxTransport. Also makes sure context is handled properly by ajaxSetup (unit test added). Rework unit tests to check actual result elements. Moves active counter test after all other ajax tests where it should be. Revised the Nokia support fallback. It turns out that Nokia supports the documentElement property but does not define document.compatMode. Adding this third fallback allows Nokia to run jQuery error-free and return proper values for window width and height. Moves things around to make jsLint happier. Fixes crossDomain test so that it assumes port to be 80 for http and 443 for https when it is not provided. Moves determineDataType into ajaxSettings so that it is accessible to transports without the need for a second argument and so that we can now pass the original options to the transport instead. Also ensures the original options are actually propagated to prefilters (they were not). Re-adds hastily removed variable and simplifies statusCode based callbacks handling. Use undefined instead of 0 to deference transport for clarity. ... Conflicts: src/event.js
| * | | Fixing $.proxy to work like (and use) Function.prototype.bind (ticket #7783)Gianni Chiappetta2010-12-141-3/+8
| | | | | | | | | | | | | | | | http://bugs.jquery.com/ticket/7783
* | | | Merge branch 'map-object.1.6' of https://github.com/danheberden/jquery into ↵jeresig2011-04-101-10/+10
|\ \ \ \ | | | | | | | | | | | | | | | danheberden-map-object.1.6
| * | | | Improve speed of $.map with object support (-5% previous speed) and improve ↵Dan Heberden2011-04-041-2/+2
| | | | | | | | | | | | | | | | | | | | .length detection
| * | | | jQuery.map to iterate over objects with a .length propertyDan Heberden2011-03-211-5/+7
| | | | |
| * | | | Merge branch 'bug_2616' of https://github.com/jboesch/jquery into map-object.1.6Dan Heberden2011-03-211-7/+5
| |\ \ \ \ | | |_|_|/ | |/| | | | | | | | | | | | | * 'bug_2616' of https://github.com/jboesch/jquery: Bug 2616; Adding object support to jQuery.map
| | * | | Bug 2616; Adding object support to jQuery.mapJordan Boesch2011-02-271-7/+5
| | | | |
* | | | | Rewrite of globalEval. Uses window.execScript or window.eval with a trick to ↵jaubourg2011-04-071-0/+20
| | | | | | | | | | | | | | | | | | | | ensure proper context. Unit tests added.
* | | | | Skip id regex check when large html strings are passed to the jQuery ↵carpie2011-04-051-1/+14
| | | | | | | | | | | | | | | | | | | | constructor (#7990).
* | | | | Merge branch '4321' of https://github.com/rwldrn/jquery into rwldrn-4321Dave Methvin2011-04-051-1/+2
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | 4321 returns empty jquery objectrwldrn2011-01-011-1/+2
| | | | |
* | | | | Moves Deferred-related code into a separate module. Context handling has ↵jaubourg2011-03-031-221/+0
| | | | | | | | | | | | | | | | | | | | been simplified in _Deferred.resolve and jQuery.when has been refactored for clarity (and minor optimization).
* | | | | Fix for #8421. Makes sure resolveWith can be called with only one parameter.jaubourg2011-03-031-5/+11
| |/ / / |/| | |
* | | | Revert "Adds an invert method to promises that returns a "inverted" promise ↵jaubourg2011-02-181-41/+9
| | | | | | | | | | | | | | | | | | | | | | | | that is resolved when the underlying deferred is rejected and rejected when the underlying deferred is resolved." This reverts commit 4e975430510f443ef76a90d077bc8956fb8b8cc0.
* | | | Fix some unscoped tests which failed after recent changes to QUnit.Anton M2011-02-151-5/+5
| | | |
* | | | Adds an invert method to promises that returns a "inverted" promise that is ↵jaubourg2011-01-311-9/+41
| | | | | | | | | | | | | | | | resolved when the underlying deferred is rejected and rejected when the underlying deferred is resolved.
* | | | Rename jQuery.subclass() to jQuery.sub().jeresig2011-01-311-6/+6
| | | |
* | | | Make sure subclass is a proper subclass not just subclassing the fn methods. ↵Digitalxero2011-01-271-0/+49
| |_|/ |/| | | | | | | | Fixes #7979.
* | | Renames Deferred's fire and fireReject methods as resolveWith and rejectWith ↵jaubourg2011-01-201-1/+1
| | | | | | | | | | | | respectively.
* | | Merge in data_nocollide branch. Fixes #6968, improves unit testing framework ↵Colin Snover2011-01-171-1/+7
|\ \ \ | | | | | | | | | | | | checks for leaky stuff.
| * | | Update unit tests with a leak detection mechanism for the various jQuery ↵Colin Snover2011-01-091-1/+4
| | | | | | | | | | | | | | | | globals and fix all leaks in the tests.
* | | | Added unit tests to check and demonstrate new jQuery.Deferred() works.jaubourg2011-01-171-1/+20
| | | |
* | | | Implements joined jQuery.when statements. Makes it so calling jQuery.when ↵jaubourg2011-01-161-3/+43
| | | | | | | | | | | | | | | | with no parameter returns a resolved promise. Ensures promise method on promises supports the promise(obj) signature. Ensures a deferred and its promise always return the same promise (itself for the promise). Unit tests provided.
* | | | Fix a failing subclass test due to a change in masterwycats2011-01-141-5/+5
| | | |
* | | | added jQuery.subclassJared Grippe2011-01-141-0/+72
| | | |
* | | | Ensure that buildFragment clones elements properly in all browsers. Fixes ↵Colin Snover2011-01-091-1/+6
|/ / / | | | | | | | | | #3879, #6655. Also improves form element clone tests and fixes bugs in $.fn.clone exposed by these new test cases related to the values of checkboxes and radio buttons in IE.
* | | Renamed "complete" to "done" in order to avoid conflicts with jXHR.complete.jaubourg2011-01-061-11/+11
| | |
* | | Cleaning up trailing whitespace again.Colin Snover2011-01-051-66/+66
| | |