aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
Commit message (Collapse)AuthorAgeFilesLines
...
* Make dimensions modular, adds optional build flag. Fixes #11856Mike Sherov2012-06-054-55/+59
|
* Fix #11724, $(document).height() in Firefox 12. Closes gh-802.Mike Sherov2012-05-311-6/+6
| | | | This reopens #3838 for IE6 which is a regression on a fix in 1.7.2, but we'd rather break a really old IE than a really recent Firefox.
* Fix #11743: Don't mask script errors in jQuery.ajax, closes gh-795.Richard Gibson2012-05-312-0/+36
|
* Adjust the return type for the tabindex attribute tests to be a string. ↵timmywil2012-05-302-16/+15
| | | | | | Recomment a tabindex test since FF12's QSA includes video elements that don't have a tabindex attribute. Related: https://bugzilla.mozilla.org/show_bug.cgi?id=618737
* Uncomment an old test for when the tabindex attrhook was deprecatedtimmywil2012-05-301-3/+3
|
* Remove the tabindex attrHook. Fixes #8473timmywil2012-05-302-22/+28
|
* Add quick-start documentation for testing with QUnit and using jQuery's ↵timmywil2012-05-296-10/+44
| | | | helper methods.
* jQuery#addBack supports an optional selector that can be used to filter the ↵Ben Alman2012-05-291-1/+2
| | | | prior set before adding it back. Fixes #9800
* Fix #11767. Modularize build and unit tests for exluding effects.Richard Gibson2012-05-283-156/+249
| | | | Closes gh-785. To build a version of jQuery without effects, use `grunt build:*:*:-effects`. The unit tests feature-check for the interfaces and skip the unit tests for effects if they don't detect it.
* Update Sizzle: Add test for [selected] attribute selections. Addresses a ↵timmywil2012-05-281-3/+3
| | | | small issue in IE8's boolean attribute selections with QSA.
* Move length tests to jQuery's selector tests as it relates to jQuery.merge.timmywil2012-05-281-1/+4
|
* Minor test suite adjustmentstimmywil2012-05-281-1/+2
|
* Update Sizzle and add tests from the Sizzle suite that require jQuery for ↵timmywil2012-05-281-3/+55
| | | | the selection to jquery/test/unit/selector.js
* Fix #11311. Percents not pixels for top/left/bottom/right. Closes gh-793.Mike Sherov2012-05-241-0/+6
|
* Optimizations to animation queue/promise logic, closes gh-776.Corey Frang2012-05-222-74/+136
|
* Fix #11755. Avoid :hidden selector for animations. Closes gh-774.Oleg2012-05-221-2/+110
|
* Fix #11796. Preserve oldIE change delegation on clone. Closes gh-789.Jason Moon2012-05-221-0/+32
|
* Fix #11443 #11441, shut up Chrome 19 and Safari 5.0.x. Closes gh-790.Mike Sherov2012-05-221-3/+3
| | | | checkClone and appendChecked test failures in Chrome 19; reliableMarginRight failures in Safari 5.
* Fix #10877. Make outerWidth/Height a setter. Closes gh-783.Mike Sherov2012-05-212-32/+54
|
* Followup #11649, clean up events in unit test.Dave Methvin2012-05-181-0/+1
|
* Fix #11649. Preserve oldIE submit flag when cloning, closes gh-772.Jason Moon2012-05-181-0/+35
|
* Fix #7157. Animation callbacks shouldn't see an element as :animated.Corey Frang2012-05-181-0/+11
| | | | Unless of course, there are other animations to be done! Closes gh-775.
* Fix indentation in /speed and /test dirs, closes gh-780.Trey Hunner2012-05-182-147/+147
|
* Inline the boxModel test, and correct unit test. Closes gh-781.Mike Sherov2012-05-181-1/+5
|
* Makes sure child element doesn't prevent setting height to 0. Fixes failure ↵jaubourg2012-05-161-1/+1
| | | | in unit test in IE6.
* Fix #11721. Remove jQuery.boxModel, deprecate jQuery.support.boxModel.Mike Sherov2012-05-152-4/+8
| | | | | | This removes all internal uses of `jQuery.support.boxModel`. jQuery has never run unit tests with Quirks Mode and has not even feigned support for several years, so these remnants weren't doing much except giving false hope. For now, `jQuery.support.boxModel` continues to have a value indicating whether the W3C box model is *generally* in use, but be aware that this is easily overridden on an element-by-element basis by the `box-model` CSS property. So don't trust this value.
* Rename .andSelf to .addBack, deprecate .andSelf #9800Dave Methvin2012-05-151-5/+5
|
* Fix #6724, though the Mobile Safari wound remains. Closes gh-764.Matt Farmer2012-05-141-2/+6
|
* Preserves context objects when multiple Deferreds are passed to $.when(). ↵jaubourg2012-05-121-6/+20
| | | | Context is an array containing the original contexts in order. When non-observable value is given, associated context is undefined. In case only a single non-observable value is given, context is the global object (thanks so much Function.prototype.apply!). Fixes #11749.
* Fix #11621, $(document).trigger() must bubble to window.Dave Methvin2012-05-121-1/+4
|
* Fixes #8892: Adding unit test for #8892 - Actually fixed in 58ed62eCorey Frang2012-05-111-0/+14
|
* Scalarize [value, easing] before css-expanding; closes gh-750.Richard Gibson2012-05-111-0/+47
|
* Fix #11738. Remove deprecated .closest(Array) => Array.Dave Methvin2012-05-111-12/+0
|
* Fix #11736. Remove deprecated Deferred.isResolved/isRejected.Dave Methvin2012-05-111-3/+1
|
* Fixes #11402. domManip now also removes the closing part of HTML comments or ↵jaubourg2012-05-061-0/+8
| | | | CDATA surrounding executed scripts. Unit tests added.
* Transform $.bindReady into $.ready.promise. It is now possible to use ↵jaubourg2012-05-061-0/+5
| | | | $.ready.promise or $.when( $.ready ) to get the ready promise. Costs *1* byte min/gzipped. Unit test added.
* remove jQuery.quickReady, save bytes, style nits in testsMike Sherov2012-05-041-8/+5
|
* Adds unit test to show order of parameters in the load callback are off for ↵jaubourg2012-05-021-0/+42
| | | | errors since the rewrite (this test works in master).
* Makes test message more meaningful.jaubourg2012-05-021-1/+1
|
* jQuery.ajaxSetup() data is merged with params. Fixes #10524Oleg2012-05-011-1/+19
|
* Gandalf the Grey says you shall not leak globals, even in the depths of Unit ↵jaubourg2012-04-301-1/+1
| | | | Tests. So fly, you fools!
* Update dimensions unit tests from changes in #11604Mike Sherov2012-04-271-8/+8
|
* Regression: makes sure that all instances of a callback are removed. Unit ↵jaubourg2012-04-251-0/+15
| | | | test added.
* How about we save 62 bytes? Also ensure that the arguments array given to ↵jaubourg2012-04-251-5/+19
| | | | fireWith is copied internally.
* Adds a unit test to control options are being copied by jQuery.Callbacks ↵jaubourg2012-04-251-0/+18
| | | | internally.
* Fix #10067. Create jQuery.quickReady; closes gh-736.Mike Sherov2012-04-232-30/+23
| | | | Allows us to get to the ready state sooner by not waiting for iframes to load. If that causes backcompat pain, use `jQuery.quickReady = false` as prescribed by your developer.
* Effects: 1.8 Animation Rewrite - thanks @mikesherov and @gibson042Corey Frang2012-04-232-4/+65
|
* Fixes #8205. Mitigates memory usage by recycling jsonp callback names the ↵jaubourg2012-04-201-2/+43
| | | | safest possible way (no kittens were harmed in the making of this). Doesn't even try to delete window properties (would necessitate a try/catch for IE which makes the cost in size prohibitive). Unit tests added.
* Fix #8894. Ensure `.appendTo` creates a new set in oldIE.Oleg2012-04-161-1/+9
|
* Make test async to please Opera 11.1; supplements #11500Rick Waldron2012-04-161-1/+2
|