aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/effects.js
Commit message (Collapse)AuthorAgeFilesLines
* Effects: manually revert two `requestAnimationFrame` commitsOleg Gaidarenko2015-11-131-33/+0
| | | | 72119e0023dcc0d9807caf6d988598b74abdc937 and bbdfbb4ee859fe9319b348d88120ddc2c9efbd63
* Release: remove revert artefactsOleg Gaidarenko2015-11-131-47/+48
|
* Revert "CSS: Ignore the CSS cascade in show()/hide()/etc."Oleg Gaidarenko2015-11-131-185/+111
| | | | This reverts commit 86419b10bfa5e3b71a7d416288ab806d47a31d1f.
* Selector: pass jQuery unit tests with selector-nativeTimmy Willison2015-11-111-10/+31
| | | | | | | | | - Ignore certain tests that obviously are not supported - Beefed up the sortOrder, uniqueSort, isXMLDoc, and attr functions Fixes gh-1742 Fixes gh-2048 Close gh-2703
* Tests: further improvements QUnit 2.0 migrationOleg Gaidarenko2015-09-081-4/+4
| | | | | | | | * Remove QUnit jshint globals * Extend QUnit.assert methods * Use assert.async instead of start/stop/done Ref b930d14ce64937e9478405eee2828d4da091d2cb
* Effects: Finish should call progressThomas Tortorini2015-09-081-4/+45
| | | | | Fixes gh-2283 Closes gh-2292
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-659/+677
| | | | Fixes gh-2056
* Tests: partially use new qunit interfaceOleg Gaidarenko2015-08-161-452/+453
| | | | | | | | | | | | http://qunitjs.com/upgrade-guide-2.x/ For most of the boring work was used https://github.com/apsdehal/qunit-migrate package However, it can't update local qunit helpers, plus in some places old QUnit.asyncTest signature is still used Fixes gh-2540
* Tests: don't use deprecated argument in test declarationOleg Gaidarenko2015-07-301-25/+74
| | | | Closes gh-2507
* Build: Acknowledge Android 2.3 is not ES5-compatibleMichał Gołębiowski2015-07-201-1/+1
| | | | | | | | | | | Android 2.3 chokes on unquoted reserved words being used as property names which was making Deferred tests not run. Acknowledge the sad fact that Android 2.3 is not ES5-compliant browser and enable the "es3" option in JSHint config. Fixes gh-2478 Closes gh-2481
* Effects: Add tests for jQuery.TweenCorey Frang2015-06-261-2/+4
|
* Tests: fix tests in accordance with new :visible behaviorTimmy Willison2015-05-121-1/+1
|
* CSS: Ignore the CSS cascade in show()/hide()/etc.Richard Gibson2015-05-111-93/+168
| | | | | | Fixes gh-1767 Fixes gh-2071 Closes gh-2180
* Effects: add tests for jQuery.easing._default in Animation and TweenTimmy Willison2015-05-051-25/+80
| | | | Ref gh-2219
* Effects: set default easing using jQuery.easing._defaultTimmy Willison2015-05-051-15/+35
| | | | | Fixes gh-2219 Close gh-2218
* Tests: Minor updates for QUnit 1.16 compatibilityRichard Gibson2014-12-051-10/+12
| | | | | | More to come later. (cherry picked from commit f6f8848fbe477fa93fd27ac7f10885dd6e97f633)
* 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.
* 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 Closes gh-1578
* 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
* Effects: Remove needless operations in testsOleg Gaidarenko2014-05-091-3/+0
|
* 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
* Effects: Don't overwrite display:none when .hide()ing hidden elementsRichard Gibson2014-03-201-0/+13
| | | | | Fixes #14848 Closes gh-1548
* Ajax, Effects: Disable Chrome 31 workaroundsMichał Gołębiowski2014-03-101-16/+3
|
* Effects: Don't check fill-opacity in Android 2.3, it's not supportedMichał Gołębiowski2014-02-131-1/+6
|
* Build: Upgrade QUnit to 1.14.0Michał Gołębiowski2014-02-051-1/+1
|
* Tests: Blacklist one effects test in Chrome 31Michał Gołębiowski2014-01-211-3/+17
| | | | | | Chrome 31 reports incorrect offsetWidth on a table cell with fixed width. This is fixed in Chrome 32 so let’s just skip the failing test in Chrome 31. See https://code.google.com/p/chromium/issues/detail?id=290399
* Effects: First step() call should match :animated selectorDave Methvin2014-01-071-0/+15
| | | | | Fixes #14623 Closes gh-1473
* Tests: Avoid use of QUnit.reset() in tests by splitting themcjqed2013-12-231-2/+0
| | | | | Fix #14040 Close gh-1457
* Effects: Integrate sinon fake timers into tests. Close gh-1377.John Paul2013-11-241-290/+204
|
* Fix #14340. Remove remnants of oldIE from unit tests. Close gh-1425.Michał Gołębiowski2013-11-111-26/+8
|
* No ticket: Improve line-height animation test stabilityRichard Gibson2013-09-171-23/+31
|
* Ensure display: inline-block when animating width/height on inline elements. ↵Timmy Willison2013-09-101-3/+7
| | | | Fixes #14344.
* Fix #14318: Cherry-pick interrupted animation fix from master ↵Richard Gibson2013-08-301-7/+12
| | | | ea5c22ec12e6a548b1ec2d7b0dcd9f71bea8d5dd
* No ticket: improve line-height animation test robustnessRichard Gibson2013-08-271-11/+26
| | | | (cherry picked from commit 2b6a7b1caf5f95034e0324a44ca9e3f27956ff64)
* Correct typos in the test assertionOleg2013-08-101-1/+1
|
* Fix test of #13855 for Opera 12.1 and IE10Oleg2013-08-101-5/+5
|
* Improve test stability for #13855 ticket. Close gh-1328.Oleg2013-08-081-11/+8
|
* Fix test for #13937 ticket. Close gh-1299Oleg2013-07-011-1/+5
|
* Fix #13937: Correctly scope .finish() following multi-element .animate(). ↵Richard Gibson2013-05-281-4/+30
| | | | | | Thanks @gnarf37. Close gh-1279. (cherry picked from commit ae9e05e9f3cb071232b056005755acb5926e403e)
* Fix #13939: Same-unit relative animationsRichard Gibson2013-05-261-0/+40
| | | | (cherry picked from commit 00231d5d94d3374d53bfe79e04ba253250c73087)
* Ref 3971c2eb: Sync with 1.x-masterRichard Gibson2013-05-131-2/+2
|
* Fix #13855: line-height animations. Close gh-1265.Richard Gibson2013-05-131-0/+38
|
* Fix #13483. Let slideDown() work after stop(). Close gh-1205.Renato Oliveira dos Santos2013-04-161-0/+60
|
* Update jshintrc to conform to new style guide. Conform to onevar and unused ↵Timmy Willison2013-04-091-75/+85
| | | | in tests. Fixes #13755.
* Move size() test to deprecated.js and avoid in other tests. Close gh-1237.Michał Gołębiowski2013-04-081-19/+17
|
* Ref #13283, move .andSelf() to deprecated.js. Close gh-1170.Nguyen Phuc Lam2013-02-261-1/+1
|
* No ticket: Revise unit tests in anticipation of Sizzle-free buildsRichard Gibson2013-02-221-9/+20
|
* Fix #12846. Restore overflow when animation is stopped.Dave Methvin2013-01-261-2/+4
|
* Fix #13183: Wrong animation initial value calc. Ref gh-1136.Mike Sherov2013-01-151-7/+24
|
* Adding some more test coverage for .finish()Corey Frang2013-01-081-1/+72
|