aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Core:CSS: Attach test nodes to documentElement, not bodyMichał Gołębiowski2015-08-163-26/+6
| | | | | | | | | | | | Attaching test divs to document.documentElement instead of document.body used to cause issues in jQuery 1.x; jQuery Compat doesn't execute any tests on document ready, though so it could be aligned with master. This makes jQuery Compat support tests work correctly even if jQuery is included & used in head before body even exists - making it similar to the master behavior. Fixes gh-2502
* Event: Reduce differences from masterRichard Gibson2015-08-101-3/+3
|
* Event: Reduce differences from masterRichard Gibson2015-08-101-7/+6
|
* Core: Don't expose jQuery.accessMichał Gołębiowski2015-08-041-1/+1
| | | | | | | jQuery.access was never documented, there is no need to keep it exposed. Fixes gh-2513 Closes gh-2524
* Build: Add a comment explaining why the es3 option is neededMichał Gołębiowski2015-08-033-2/+10
| | | | | | | | | | | | It might not be obvious to everyone that IE 9 & Android 4.0 are not ES5-compliant browsers (by a large margin) so it's better to add a support comment. This requires slight changes in parsing the config file as it's not a pure JSON anymore. JSHint understands such files without problems. (cherry-picked from 669cb16d763cb5486dadd56ec15a17b2b0303571) Closes gh-2520
* Tests: don't use deprecated argument in test declarationOleg Gaidarenko2015-07-3011-64/+191
| | | | Ref aabe94edb4880c75eeebc5b5b5d66a9ad17008fe
* Docs: Fix various spelling mistakesBruno Pérel2015-07-305-5/+5
| | | | | | (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
* Event: Update support comments for mouseenter/mouseleave implementationMichał Gołębiowski2015-07-271-7/+4
| | | | | | | | | | | Custom mouseenter/mouseleave implementation was needed because of: 1. Safari 6 not implementing mouseenter/mouseleave at all. 2. Chrome sending mouseenter too often. The second issue has been fixed in Chrome but exists now in Safari 7 (it's fixed in Safari 8) so we have to keep it for now, unfortunately. (cherry-picked from 2792845534e36c39dbb9c8369ed96aaefa560081)
* Core: Adjust comments & tests after dropping Safari 6 supportMichał Gołębiowski2015-07-274-3/+4
| | | | | | | | | | 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-272-11/+21
| | | | | | | (cherry-picked from bf48c21d225c31f0f9b5441d95f73615ca3dcfdb) Fixes gh-2267 Closes gh-2363
* Core: Add a support comment for Safari 8Michał Gołębiowski2015-07-201-0/+5
| | | | | | | | | | Related issue: https://bugs.webkit.org/show_bug.cgi?id=137337 Thanks @phistuck! (cherry-picked from d24275372624bac897c4131fd1507a58c09a1483) Refs cfe468f29c4cbe1a457d0feb17dec90dcfd7c280
* Release: properly set the dist remote when it's a real releaseTimmy Willison2015-07-131-1/+1
|
* Build: just tack on +compat to versions that may include labelsTimmy Willison2015-07-131-2/+1
|
* Ajax: Remove jsonp callbacks through "jQuery#removeProp" methodOleg Gaidarenko2015-07-132-5/+40
| | | | | | Fixes gh-2323 Closes gh-2464 Ref a2ae215d999637e8d9d0906abcbf6b1ca35c8e6e
* Build: add mailmap entryTimmy Willison2015-07-112-2/+2
|
* Build: update AUTHORS.txtTimmy Willison2015-07-081-0/+14
|
* 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-075-27/+117
| | | | | | 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-062-0/+39
| | | | Fixes gh-2102
* CSS: Improve a comment explaining IE11 fullscreen bugMichał Gołębiowski2015-07-011-1/+2
| | | | (cherry-picked from 8e4aac8cb03ffb88373ea99629165d82ff5eccdd)
* Effects: Fix testsMichał Gołębiowski2015-06-281-1/+0
| | | | | Refs 6b10f9d7e9fb6d062d2bbda49196544cd059b05c Refs gh-2340
* Tests: Fix merge conflictCorey Frang2015-06-262-7/+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-264-20/+263
| | | | | | | | | Closes gh-2340 (cherry picked from commit b3b2d6c3dd51fbdc69e1942e9af75cc99a1834c2) Conflicts: src/effects.js
* Effects: Add tests for jQuery.TweenCorey Frang2015-06-269-445/+6249
| | | | | | | Conflicts: src/selector-native.js test/index.html test/unit/effects.js
* CSS: make the getStyles function more readableThomas Tortorini2015-06-251-3/+5
| | | | | | (cherry-picked from 3a0d582cf63b6e8f77150d9c38d2bf34d0c7790e) Closes gh-2393
* Attributes: fix IE8 issuesGilad Peleg2015-06-252-24/+105
| | | | Follow-up for d0388e9e806ca3b30e7bbaaa1c336b7c98dc5f88
* Core: organize prop & attr code to be similarGilad Peleg2015-06-232-154/+81
| | | | | Ref 5153b5334eb2c8317372b46209bd9d092a91afdc Closes gh-2426
* CSS: Work around an IE11 fullscreen dimensions bugMartin Naumann2015-06-231-0/+11
| | | | | | | (cherry-picked from 90d828bad0d6d318d73d6cf6209d9dc7ac13878c) Fixes gh-1764 Closes gh-2401
* Core: Change support.ownLast to support.ownFirstMichał Gołębiowski2015-06-233-14/+14
| | | | | | | | 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-163-8/+28
| | | | | - Also add comments to hidden/disconnected tests noting this is to ensure consistency between branches
* Offset: getBounding doesn't return width/height in IE8. Fixes test.Timmy Willison2015-06-161-14/+7
|
* Offset: no need to check for ownerDocumentTimmy Willison2015-06-161-4/+4
|
* Offset: revert to jQuery.contains for IE8's sake (compat only)Timmy Willison2015-06-161-7/+10
| | | | - getClientRects() throws on disconnected elements in IE8 only
* Offset: return before getBoundingClientRect to avoid error in IE8-11Timmy Willison2015-06-161-2/+9
|
* Offset: return zeros for disconnected/hidden elementsTimmy Willison2015-06-162-15/+12
| | | | | Fixes gh-2310 Close gh-2396
* Revert "Offset: allow offset setter to throw for disconnected elements"Timmy Willison2015-06-162-2/+10
| | | | 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)
* Manipulation: Remove an internal argument to the remove methodMichał Gołębiowski2015-06-141-26/+30
| | | | | | | (cherry-picked from 349edbd6c53aa93d4fd207d3c0c4c24a7b0314dd) Fixes gh-2301 Closes gh-2366
* Event: Remove an internal argument to the on methodMichał Gołębiowski2015-06-141-51/+55
| | | | | | (cherry-picked from 04a29696e5b176ac66401120e433d52425222f0f) Refs gh-2301
* Core: Make jQuery objects iterableMichał Gołębiowski2015-06-133-0/+31
| | | | | | | | | | | | 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-133-1/+4
| | | | | | | 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)
* Build: remove bower.json lint targetOleg Gaidarenko2015-06-111-4/+0
| | | | | (Cherry-picked from 285cfbfccc4c61d50ee8e0fe6e23695dc663e166) Ref 26eca143c2dd857b9e3d1c446a467fed16e903d2