aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
Commit message (Collapse)AuthorAgeFilesLines
...
* Event: Fully clean up events in unit testVeaceslav Grimalschi2014-12-071-1/+2
| | | | | Closes gh-1685 (cherry picked from commit 4467ed606ab0a9b28ed495e682576910937fa5e0)
* Callbacks: Disabling a callback should prevent firingDave Methvin2014-12-071-0/+15
| | | | | | | | Thanks to @TheDistantSea for the report! Fixes gh-1790 Closes gh-1643 (cherry picked from commit bc1cb122db30be034b3da84ee2546c86e2a5268f)
* Tests: Tilt at a few style guide windmillsRichard Gibson2014-12-061-45/+43
| | | | | | Ref 3c13f4c6297566a71102c2362347987f6d6a636e (cherry picked from commit 906caebb3f3bc542904a94846e778aa8d71c0575)
* Tests: Accommodate page changes from the QUnit HTML reporterRichard Gibson2014-12-061-21/+20
| | | | | | Ref 6748ba349650353c7bed6eec201a3192f6b2cae1 (cherry picked from commit 3c13f4c6297566a71102c2362347987f6d6a636e)
* Tests: Minor updates for QUnit 1.16 compatibilityRichard Gibson2014-12-054-20/+22
| | | | More to come later.
* Core: Throw an error on $("#") rather than returning 0-length collectionDave Methvin2014-12-031-2/+7
| | | | | | | Closes gh-1682 Thanks @goob for the issue report! (cherry picked from commit 80022c81ce4a07a232afd3c580b0977555a2daec)
* Manipulation: don't test data-URI with script element in IE8Oleg Gaidarenko2014-12-031-8/+12
| | | | | | | Since, apparently, it doesn't support it. Couldn't find more relevant info then this - http://msdn.microsoft.com/en-us/library/cc848897(v=vs.85).aspx No guard for older IE, since support for them will be removed soon anyway
* Manipulation: support data-URI scripts insertionBin Xin2014-12-031-0/+9
| | | | Ref 15f4dec7894f1e00adbfb9bce4f870441a527bd6
* Dimensions: allow modification of coordinates argumentOleg Gaidarenko2014-11-161-0/+12
| | | | Ref f7e60dc83d81cbf892de9dab39642dd67c49bd23
* CSS: Fix get upper case alpha opacity in IE8Zheming Sun2014-11-081-0/+13
| | | | | Fixes gh-1705 Closes gh-1704
* Build: Fix various typosOleg Gaidarenko2014-11-081-1/+1
| | | | | Thanks @jamesgpearce, @imyousuf Ref dc4b914a05e1e6dbf13f916897b5d6a472ea0380
* Ajax: Fix for request aborted in ajaxSendDan Hart2014-11-011-0/+17
| | | | | Fixes gh-1775 Close gh-1619
* Test: Switch leftover andSelf to addBackMichał Gołębiowski2014-10-302-3/+3
|
* Deprecated: Drop size and andSelf methodsMichał Gołębiowski2014-10-301-6/+0
| | | | | | | (cherry-picked from f110360f65a268e959ae892ca36e85da3d91e606) Fixes gh-1749 Closes gh-1822
* Event: Restore the `constructor` property on jQuery.Event prototypeDaniel Herman2014-09-041-1/+3
| | | | | | | | | | | The original definition of the jQuery.Event prototype was paving over the `constructor` property which was causing jQuery.isPlainObject to improperly report that an instance of jQuery.Event was a plain object. Fixes #15090 Closes gh-1580 (cherry picked from commit b807aedb7fee321fb3aa5d156a5a256ab0634e2d)
* Css: Fix the "sanity check" testMichał Gołębiowski2014-07-281-1/+1
| | | | | | | The #dl element has 0 height so it's now considered hidden regardless of its width. (cherry-picked from 995f70777ac6c0f988a44807ef1399e73937b2ee)
* CSS: elements are hidden when either offsetWidth or offsetHeight is zeroTimmy Willison2014-07-171-10/+12
| | | | | | | | | | - Note: this is a breaking change that has been delayed for several versions. Fixes #10406 Fixes #13132 Conflicts: src/css/hiddenVisibleSelectors.js
* Selector: Remove "#" exception for identifier tokensMichał Gołębiowski2014-06-301-2/+2
| | | | | | | Port Sizzle test change from: https://github.com/jquery/sizzle/commit/f204a6112216f31685717d9fc1bf6cabf42b2ef1 (cherry-picked from 86e62d8b37ff9ad40e7c21c2c0c440a9cdfc550e)
* Build: Move test to appropriate moduleOleg Gaidarenko2014-06-162-6/+4
| | | | Ref fbdbb6fd431a3f598b581079b0ca37c399d369d4
* Effects: Improve raf logicOleg Gaidarenko2014-06-161-0/+28
| | | | | | | | * Make animation behave as if jQuery.fx.off = true if document is hidden * Use cancelAnimationFrame in jQuery.fx.stop Ref 708764f47b0c8de152bbb444d0f608db558b76ed
* Effects: Reintroduce use of requestAnimationFrameOleg Gaidarenko2014-06-161-0/+4
| | | | | | | | | | | Same as before, just use don't use prefixes, since they pretty match useless now and use page visibility API to determine if animation should start. Also null the requestAnimationFrame attribute in window for tests since sinon does not provide fake method for it. Fixes #15147 Ref 72119e0023dcc0d9807caf6d988598b74abdc937
* Effects: Remove needless operations in testsOleg Gaidarenko2014-06-161-3/+0
| | | | Ref 10024c25820f08139f11d924cec552a26dfbba18
* Ajax: Always use script injection in globalEvalOleg Gaidarenko2014-06-163-32/+49
| | | | | Fixes #14757 Ref bbdfbb4ee859fe9319b348d88120ddc2c9efbd63
* CSS: Do not throw on frame elements in FFOleg Gaidarenko2014-06-161-0/+23
| | | | | | | | | | | | | IE9-10 throws on elements created in popups (see #14150), FF meanwhile throws on frame elements through "defaultView.getComputedStyle" (see #15098) Use "defaultView" if in the popup which would fix IE issue, use "window.getComputedStyle" which would fix FF issue. And everybody wins, except performance, but who cares right? Fixes #15098 Ref e488d985cfb10ab8c684bbc6a9b8ff3eae23bf83
* Tests: Clean up isNumeric testsRichard Gibson2014-06-071-47/+42
|
* Core: Work around loss of precision from parseFloatRichard Gibson2014-06-071-1/+2
| | | | Fixes #15100
* Ajax: Support usage without jQuery.eventTJ VanToll2014-06-021-0/+16
| | | | | Fixes #15118 Closes gh-1588
* Selector: Use jQuery reference not SizzleOleg Gaidarenko2014-05-291-2/+6
| | | | (Cherry-picked from 3b9057a18de31b838bd0dd25ea466993b62f9dd9)
* Selector: Fix test iframe submission for firefoxOleg Gaidarenko2014-05-291-9/+5
| | | | | Ref jquery/sizzle@20fbadb0870bd30e0e66c68891f121c0450374c4 (Cherry-picked from efc4f8d7814a8c44bd5b4d924d237a04263e1a85)
* Ajax, Manipulation: don't test cross-document manip in Android 2.3Michał Gołębiowski2014-05-072-2/+23
| | | | | | | (cherry-picked from 213b9604f3da654e4281eeea56fcb169f88ffd19) Fixes #14796 Closes gh-1572
* Core: Correct the number of expected testsMichał Gołębiowski2014-05-021-1/+1
| | | | (cherry-picked from da148f158f40b474841ad7a60cc39c5868cf420c)
* Core: Remove repeated testLiang Peng2014-05-021-1/+0
| | | | | | (cherry-picked from 69d4a48ff67188214bc28ec1a4d138c5997ce171) Closes gh-1570
* Data: Work around IE11 bug with onpageshow attributeDave Methvin2014-04-301-0/+6
| | | | | | | | | Fixes #14894 (cherry picked from commit b8133e282ceebf502c7c08d849b176a929c9c450) Conflicts: src/data.js test/unit/data.js
* Effects: Respect display value on inline elementsOleg Gaidarenko2014-04-301-0/+24
| | | | | | | | | | | | Take "olddisplay" value into the account Fixes #14824 Closes gh-1566 Ref 73fe17299a840a8a7f3ffffcac15e32a88bd3d66 (cherry-picked from c34dbf5a8d135e0f873ab7a76d1c8f8e316f31e4) Conflicts: src/effects.js
* Css: Use only positive integers as values for widows/orphansMichał Gołębiowski2014-04-181-8/+1
| | | | | | | | | | | According to http://www.w3.org/TR/CSS2/page.html#propdef-orphans, widows and orphans can take only positive integer values. Together with a Chrome 34 regression this caused the test to fail. (cherry-picked from def4841cfaf68e2ec156c554f8efa4aa64203f36) Fixes #15016 Closes gh-1563
* Tests: Fix failing ajax tests in oldIEOleg Gaidarenko2014-04-152-10/+14
|
* Tests: Remove unused variablesOleg Gaidarenko2014-04-151-2/+2
|
* Tests: Copy some Sizzle combinators testsOleg Gaidarenko2014-04-151-0/+41
|
* Tests: Add more tests for Sizzle attributesOleg Gaidarenko2014-04-151-3/+89
|
* Tests: Add test for selectors with commasOleg Gaidarenko2014-04-151-0/+12
|
* Tests: Copy Sizzle.uniqueSort testsOleg Gaidarenko2014-04-151-0/+79
|
* Tests: Copy Sizzle.contains testsOleg Gaidarenko2014-04-151-0/+26
|
* Tests: Move some of the Sizzle tests to selectorOleg Gaidarenko2014-04-151-0/+93
|
* Tests: Improve jsonp testsOleg Gaidarenko2014-04-151-2/+2
| | | | | Since global variable for callback always would be equal to undefined value it better to check for boolean instead
* Tests: Correct logic of a broken assertionOleg Gaidarenko2014-04-151-2/+3
|
* Support: Add Android support tests resultsMichał Gołębiowski2014-03-311-0/+74
|
* Css: change boxSizingReliable in IE<9.Michał Gołębiowski2014-03-211-3/+3
| | | | | | | | Change boxSizingReliable test value to false in all IE versions. Modify support comments to argument getComputedStyle guards with oldIE support and not node.js which is not supported in 1.x. Closes gh-1498
* Effects: Don't overwrite display:none when .hide()ing hidden elementsRichard Gibson2014-03-201-0/+13
| | | | | | | | | Fixes #14848 Closes gh-1548 (cherry picked from commit 890d441aa5d319e49951ba6f0ec719cd4cb96759) Conflicts: src/effects.js
* CSS: jQuery#hide should always save display valueOleg Gaidarenko2014-03-201-0/+10
| | | | | | | | | Fixes #14750 Closes gh-1509 (cherry picked from commit 5a8f76933288396b915800a18240aa17d3414201) Conflicts: src/css.js
* Attributes: Trim whitespace from option text when returned as a valueJohn Hoven2014-03-201-0/+13
| | | | | | Fixes #14858 Ref #14686 Closes gh-1531