aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
...
* Tests: Account for Edge in originalEvent UA-sniffsMichał Gołębiowski2015-09-141-6/+4
| | | | | | | | | All other cases where Edge user agent needed to be taken into account in tests have already been resolved. (cherry-picked from 64fd7ef3d081b5c65d541237f73a4d89f0f0ad7b) Fixes gh-2357
* Tests: Fix the expando-removal test failure in IE 8Michał Gołębiowski2015-09-141-1/+4
| | | | | | | IE 8 gets the expando removed via removeAttribute so the second assertion won't be reached. The expected assertion count had to be updated. Fixes gh-2596
* Tests: Provide equal() arguments in correct order (actual, expected)Richard Gibson2015-09-081-1/+1
| | | | | | | | | | Ref 224271982eb9cd351d7db1b38c740b4e927e6f97 Ref f5bf9bc48897e3b8f050d87d02252c8be456044a (cherry picked from commit d3d8d9751f3d14a545b26cf820dc1f51896a7b50) Conflicts: test/unit/data.js
* Data: test that delete is not used on DOM nodesJason Bedard2015-09-081-0/+24
| | | | | | (test cherry-picked from 0e982433eb94391b3e9f6838d9b8fbf9bb31abf9) Closes gh-2479
* Tests: Really fix tests in IE 8 this timeMichał Gołębiowski2015-09-082-2/+2
| | | | 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: Don't load non-basic tests when basic module is selectedMichał Gołębiowski2015-09-081-29/+37
| | | | | | | | | | When loading basic tests don't load any others to not overload Android 2.3. The drawback is that most tests are not selectable in the module dropdown when the basic module is seelcted. (cherry-picked from 855b0c8c288533948b257925a8906f7da3449eed) Refs 2c7e9c934971500a746d012c529e13ec0b560a83
* Tests: Backport basic tests from masterMichał Gołębiowski2015-09-082-0/+270
| | | | | | | | | | | | | 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
* Tests: more style correctionsOleg Gaidarenko2015-09-086-19/+18
| | | | | | Provocated by jscs-dev/node-jscs@2de68c0 Ref c161eecce09fc66ce252d4adf64b565f726bb6d2
* Tests: further improvements QUnit 2.0 migrationOleg Gaidarenko2015-09-0816-271/+293
| | | | | | | | | * Remove QUnit jshint globals * Extend QUnit.assert methods * Use assert.async instead of start/stop/done Ref b930d14ce64937e9478405eee2828d4da091d2cb Ref c8d15a2f9f108e90d3651c31e4abf45415a30fde
* Effects: Finish should call progressThomas Tortorini2015-09-082-4/+46
| | | | | | | (cherry-picked from 3dd3d1357d027a487559516fcdd9064cc792edab) Fixes gh-2283 Closes gh-2292
* Tests: do not create data cache when fetching single propertyJason Bedard2015-09-081-0/+16
| | | | | (test cherry-picked from f5bf9bc48897e3b8f050d87d02252c8be456044a) Refs gh-2554
* Data: Don't expose jQuery.acceptDataJason Bedard2015-09-081-35/+19
| | | | | | | | jQuery.acceptData is an undocumented internal API that shouldn't be exposed. (cherry-picked from 224271982eb9cd351d7db1b38c740b4e927e6f97) Fixes gh-2555
* Tests: lower the PHP sleep time in unreleasedXHR.htmlMichał Gołębiowski2015-09-081-1/+1
| | | | | | | | | | | | The AJAX test performed in unreleasedXHR.html was scheduling PHP processes sleeping for 10 minutes. When a lot of commits are tested in short intervals this was causing build failures due to the drained php-fpm pool. The 10 seconds sleep time should be enough for this test. (cherry-picked from 02e10082b25df3b47b6b98e3b35399712795b7df) Refs 62acda819f9b6fba9263d0b613e15285807b23a7
* Serialize: Handle arrays with null valuesDaniel Nill2015-09-071-1/+4
| | | | | | (cherry-picked from 3d7ce0a65f0707ff01a851822e57ba80adcff075) Closes gh-2436
* Effects: Remove additional parameters of easingsThomas Tortorini2015-09-071-4/+2
| | | | | | | (cherry-picked from b7a7dea95f84d6d8e5a8186d4fb09a762baf79bb) Fixes gh-2367 Closes gh-2376
* Tests: Do not define two modules with the same nameOleg Gaidarenko2015-09-071-1/+1
| | | | | Ref 7aa46e0df8a673e6b00550bbbbed21eed50108b7 Fixes gh-2437
* Tests: Partially use new qunit interfaceOleg Gaidarenko2015-09-0724-6122/+6646
| | | | | | | | | | | | | 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 Ref b930d14ce64937e9478405eee2828d4da091d2cb Fixes gh-2540
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-0731-7373/+7878
| | | | | Ref 10fdad742a2a6aa9f0e00b3e04fc5264797c53c7 Fixes gh-2056
* Core: Support non-browser environmentsMichał Gołębiowski2015-08-1610-0/+148
| | | | | | | | | | | | Fixes gh-2133 Fixes gh-2501 Closes gh-2504 Refs gh-1950 Refs gh-1949 Refs gh-2397 Refs gh-1537 Refs gh-2504 Refs 842958e7aecd0d75a7ee9e2aaec83457701aa2f3
* Event: Reduce differences from masterRichard Gibson2015-08-101-3/+3
|
* Tests: don't use deprecated argument in test declarationOleg Gaidarenko2015-07-3011-64/+191
| | | | Ref aabe94edb4880c75eeebc5b5b5d66a9ad17008fe
* Docs: Fix various spelling mistakesBruno Pérel2015-07-304-4/+4
| | | | | | (cherry-picked from 360a4780339b7f412b75ad8a06dca7f39616f654) Closes gh-2487
* Data: backport cleanData tests from gh-2480Jason Bedard2015-07-281-0/+39
| | | | | | | The tests needed a slight change as on compat we're not removing the value for expando but setting it to undefined. Refs gh-2480
* Ajax: Account for Android 2.3 not firing window.onerror on script errorsMichał Gołębiowski2015-07-282-0/+19
| | | | | | | | | | | | Android 2.3 doesn't fire the window.onerror handler, just accept the reality there and skip the test. (cherry-picked from 6044fb6a7384aec85906949835ef9a58114896ce) Refs gh-1573 Refs gh-1786 Refs jquery/jquery.com#108 Closes gh-2458
* Core: Adjust comments & tests after dropping Safari 6 supportMichał Gołębiowski2015-07-272-2/+2
| | | | | | | | | | Support comments that mentioned only Safari < 7 were checked & updated to account for bugs existing in newer versions as well; Safari 6 support test results were removed. (cherry-picked from 93bee4701d14202045a88aab156da0daf9418430) Refs gh-2482
* Core: .each/.map should accept an undefined/null valueThomas Tortorini2015-07-271-0/+12
| | | | | | | (cherry-picked from bf48c21d225c31f0f9b5441d95f73615ca3dcfdb) Fixes gh-2267 Closes gh-2363
* Ajax: Remove jsonp callbacks through "jQuery#removeProp" methodOleg Gaidarenko2015-07-131-3/+32
| | | | | | Fixes gh-2323 Closes gh-2464 Ref a2ae215d999637e8d9d0906abcbf6b1ca35c8e6e
* Effects: fix failing tests in IE8Timmy Willison2015-07-082-5/+7
|
* CSS: Add an integration test for issue gh-1764Michał Gołębiowski2015-07-084-0/+172
| | | | | | | | (cherry-picked from 8887106702baa69ed80baa65c5a249786bffc77e) Refs gh-1764 Refs gh-2401 Closes gh-2425
* CSS: Make .css("width") & .css("height") return fractional valuesMichał Gołębiowski2015-07-073-16/+82
| | | | | | Fixes gh-1724 Closes gh-2454 Refs gh-2439
* Deferred: pass lint in new catch testsTimmy Willison2015-07-061-4/+4
|
* Deferred: add .catch handlerTimmy Willison2015-07-061-0/+36
| | | | Fixes gh-2102
* Effects: Fix testsMichał Gołębiowski2015-06-281-1/+0
| | | | | Refs 6b10f9d7e9fb6d062d2bbda49196544cd059b05c Refs gh-2340
* Tests: Fix merge conflictCorey Frang2015-06-261-4/+0
| | | | | | Introduced in 6b10f9d7e9fb6d062d2bbda49196544cd059b05c originally. Had a rebase conflict that I fixed but forgot to ⌘-s. ☹
* Tests: Lower the checks rounding errorCorey Frang2015-06-261-1/+1
| | | | The CSS value rounding error was causig failures on FF and IE.
* Effects: Adding unit tests for jQuery.AnimationCorey Frang2015-06-262-0/+231
| | | | | | | | | Closes gh-2340 (cherry picked from commit b3b2d6c3dd51fbdc69e1942e9af75cc99a1834c2) Conflicts: src/effects.js
* Effects: Add tests for jQuery.TweenCorey Frang2015-06-264-4/+310
| | | | | | | Conflicts: src/selector-native.js test/index.html test/unit/effects.js
* Core: Change support.ownLast to support.ownFirstMichał Gołębiowski2015-06-231-12/+12
| | | | | | | | jQuery.support.ownLast was the only support test that was supposed to be false when it succeeded. It was confusing. Fixes gh-2406 Closes gh-2408
* Offset: add tests for hidden elements + scrollTimmy Willison2015-06-162-1/+15
| | | | | - Also add comments to hidden/disconnected tests noting this is to ensure consistency between branches
* Offset: return zeros for disconnected/hidden elementsTimmy Willison2015-06-161-14/+8
| | | | | Fixes gh-2310 Close gh-2396
* Revert "Offset: allow offset setter to throw for disconnected elements"Timmy Willison2015-06-161-1/+9
| | | | This reverts commit 0d11c1182f2012cd6eb06ce1e3fa5a495af9bee3.
* Tests: Remove test/data/ua.txtMichał Gołębiowski2015-06-161-272/+0
| | | | | | | | | The file was used by $.browser tests but $.browser now doesn't exists in Core and this file hasn't been updated for a few years. (cherry-picked from e831856490d2212bdbaff4cd76137b93ccf26d92) Fixes gh-2398
* Tests: Remove Edge version from the user agentMichał Gołębiowski2015-06-161-1/+1
| | | | | | | | The version will change in the future, matching by /edge\//i is enough (cherry-picked from 5a1217e40193c8884155ccaf415091d326ddb52a) Refs 8e111df641cca3e1b75b31a1971bfc89014b4ded
* Tests: Add Microsoft Edge results (from Windows 10 build 10130)Michał Gołębiowski2015-06-141-4/+36
| | | | | | | The Microsoft Edge user agent contains "Chrome" so it needs to be checked before Chrome. Refs 8e111df641cca3e1b75b31a1971bfc89014b4ded
* Tests: Correct a typo in the regex matching Safari 8Michał Gołębiowski2015-06-141-1/+1
| | | | (cherry-picked from c17543fd3c14ff86c448dbb90f9fe1223661a73b)
* Core: Make jQuery objects iterableMichał Gołębiowski2015-06-132-0/+21
| | | | | | | | | | | | Make iterating over jQuery objects possible using ES 2015 for-of: for ( node of $( "<div id=narwhal>" ) ) { console.log( node.id ); // "narwhal" } (partially cherry-picked from bb026fc12c3c2ad37f47f0919e484bddcdc3d291) Fixes gh-1693
* Build: Update grunt-contrib-jshintMichał Gołębiowski2015-06-131-0/+2
| | | | | | | JSON needed to be added to JSHint globals as it's not implied by the es3 setting and yet all our supported browsers have it implemented. (cherry-picked from 1556c4661af647e355a9a5c0a814012955e231bc)
* CSS: Don't cache unrecognized CSS property namesMichał Gołębiowski2015-06-011-0/+80
| | | | | | | | | | | | | | | | | | | This prevents jQuery from caching a prefixed property name if provided directly by the user, e.g. the following code: elem.css( "msTransform", "translate(5px, 2px)" ); should not prevent one from from later setting the transition directly: elem.css( "transform", "translate(5px, 2px)" ); on a browser not understanding the unprefixed version which is the case for Safari 8 & transform. (cherry-picked from d471842b3e3af83c9a1be06b5d16f75bfa96af8c) Fixes gh-2015 Closes gh-2298
* Event: improve originalEvent hackOleg Gaidarenko2015-05-291-0/+129
| | | | | Ref 6df669f0fb87cd9975a18bf6bbe3c3548afa4fee Ref gh-2336