aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/basic.js
Commit message (Collapse)AuthorAgeFilesLines
* Effects: add back support.shrinkWrapBlocks() for ie6Timmy Willison2016-01-061-1/+3
|
* Revert "CSS: Make show/hide/toggle methods a module"Oleg Gaidarenko2015-12-221-9/+1
| | | | This reverts commit 3842246024475eafdc8a00a7ac4358d06d76cab2.
* CSS: Make show/hide/toggle methods a moduleDave Methvin2015-10-251-1/+9
| | | | | | | | | | | | | | | | Unit test changes some uses of .show() and .hide() to .css( "display", ... ), there was already an implicit assumption in several of the existing tests. Fixes gh-2193 Close gh-2648 (cherry picked from commit 67d7a2eefee768b59eb3d51cb1fb2c671873e58a) Conflicts: Gruntfile.js src/css.js src/css/showHide.js test/unit/css.js
* Tests: Really fix tests in IE 8 this timeMichał Gołębiowski2015-09-081-1/+1
| | | | IE 8 doesn't have indexOf on arrays. Also, one toLowerCase() was missing. Oops.
* Tests: Make basic tests work in IE 8Michał Gołębiowski2015-09-081-5/+43
| | | | | | | | | IE 8 prints tag names in upper case which was breaking some tests. This commit is not necessary on master but has been brought here to keep tests similar in both branches. (cherry-picked from 5914b103627e3773418ad1fd8c3b034bf3748d51)
* Tests: Backport basic tests from masterMichał Gołębiowski2015-09-081-0/+264
Commit 2c7e9c9 added the basic test suite; these are the only tests that are now run on Android 2.3 on master. On compat we're keeping full Android 2.3 support for now but the tests and the testswarm basic run mode have been cherry-picked anyway to reduce the divergence between branches. (cherry-picked from 2c7e9c934971500a746d012c529e13ec0b560a83) Fixes gh-2505 Closes gh-2509 Refs gh-2483