aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
Commit message (Collapse)AuthorAgeFilesLines
...
* Event: Don't test stopImmediatePropagation in Android 2.3Michał Gołębiowski2014-03-181-2/+5
| | | | | Android 2.3 doesn't support stopImmediatePropagation; jQuery fallbacks to stopPropagation in such a case.
* Core: Blacklist the ready test on async-loaded jQuery in iOS7Michał Gołębiowski2014-03-171-4/+9
| | | | | | (cherry-picked from 551578eb3676f67cccd8a91a582c2225bc970cac) Fixes #14882
* Event: Unit test for #14741 fixDave Methvin2014-03-161-0/+14
| | | | | | Fixes #14741 Closes gh-1503 (cherry picked from commit 472f70a9df75c289393d6618c36257a04f9cb902)
* Event: Call underlying stopImmediatePropagation when presentDave Methvin2014-03-121-2/+17
| | | | | Fixes #13997 (cherry picked from commit 6a89db86ed817f6a7498076e2a06b90f9fce0831)
* Core: Add test for jQuery.ready.promise fallback loadMichał Gołębiowski2014-03-131-0/+5
| | | | | | Fix #13655 Close gh-1209 Ref 32b066d3805a48f8c8312562ed52a1b5910b1d85
* Support: Make the support matrix for iOS 6 match iOS 7 as wellMichał Gołębiowski2014-03-131-1/+1
| | | | (cherry-picked from 26ce21786252981563e49e91a85b3e0bfa16c3e3)
* Css: Fix testsMichał Gołębiowski2014-03-101-6/+9
| | | | | | | | | It's not easy to find a CSS property that is implemented even in ancient browsers and that returns a consistent result among browsers when passed through .css(). color didn't work since Firefox normalizes it an empty value to rgb(0, 0, 0). (cherry-picked from 0c12cb3910c446960a274fb0eab11b8830bed71f)
* Support: Simplify the box-sizing testMichał Gołębiowski2014-03-101-5/+0
| | | | Don't require body in the support.boxSizing test.
* Css: Revert 24e587929f62428e1959b10aace6dc4fd65ab397Michał Gołębiowski2014-03-101-7/+20
| | | | | | | | | | | | | | The workaround to be able to change !important styles broke the browser keeping the old CSS value if the new one was rejected. Patching it would involve a significant perf hit (~33%) so the initial patch needs to be reverted instead. Tests by m_gol & gibson042. (cherry-picked from 10e654218a65ec9a0ffc875137cea945389c69f1) Fixes #14836 Closes gh-1532
* Ajax, Effects: Disable Chrome 31 workaroundsMichał Gołębiowski2014-03-102-30/+11
|
* Core: Do not run window.onready when readyDave Methvin2014-03-041-0/+7
| | | | | Fixes #14802 (cherry picked from commit 2df1aad6a1c9376c2a477eba26ee992113ed1c23)
* CSS: Return values should be numbersDave Methvin2014-03-041-1/+2
| | | | | Fixes #14792 (cherry picked from commit f4b37d89820535d6c7503925aa8872645681a865)
* Event: Allow triggerHandler(beforeunload)Dave Methvin2014-03-041-0/+5
| | | | | | | | Fixes #14791 (cherry picked from commit 06adf7c95d93507908181995a9ea15fe2729595a) Conflicts: src/event.js
* Ajax: .load() should trim its selectorDave Methvin2014-03-041-0/+8
| | | | | | | | Fixes #14773 (cherry picked from commit 3a68c114e3a30af86dc261c9d62ce2ae4144d420) Conflicts: src/ajax/load.js
* Core: Arrays like [42] should fail .isNumeric()Dave Methvin2014-03-041-1/+3
| | | | | Fixes #14179 (cherry picked from commit 10efa1f5b44046aab6bcc8423322a41923faa290)
* Effects: Don't check fill-opacity in Android 2.3, it's not supportedMichał Gołębiowski2014-02-131-1/+6
| | | | (cherry-picked from 70ac4485f30633074696fa28ca29b0325459f228)
* Event: Blacklist the onbeforeunload test in Android 2.3Michał Gołębiowski2014-02-131-3/+4
| | | | | | | Similarly to iOS, Android 2.3 has the onbeforeunload property on window but doesn't support the event. This commit blacklists the test there as well. (cherry-picked from 6d2ab64df7bdda087e79deaa53db969fa6f2cd92)
* Css: Don't check fill-opacity in Android 2.3, it's not supportedMichał Gołębiowski2014-02-131-1/+6
| | | | (cherry-picked from de75b3cc626829c3478a8a6d59dddc948d348b41)
* Docs: Add support comments for prefixed box-sizingMichał Gołębiowski2014-02-052-0/+2
|
* Build: Upgrade QUnit to 1.14.0Michał Gołębiowski2014-02-054-18/+18
| | | | (cherry-picked from 95b21c6ec2790d0d051cdfe95d73148d7c385d68)
* Support: Add iOS6 support tests resultsMichał Gołębiowski2014-01-271-0/+37
|
* Tests: Blacklist beforeunload test in iOSMichał Gołębiowski2014-01-271-1/+4
| | | | | | | | | | iOS has the window.onbeforeunload field but doesn't support the beforeunload handler making it impossible to feature-detect the support. (cherry-picked from 988d99ad278c2c9dc16c68f86bddc4df99dcd928) Fixes #14717 Closes gh-1496
* Manipulation: Use textarea for missing IE defaultValue checkDave Methvin2014-01-231-1/+1
| | | | | | | | | | IE11 fixed the checkbox defaultValue issue but not textarea. Rather than creating a new detect name I'm reusing the old one to protect anyone who is unwisely using this externally. Re-fixing the defaultValue when it doesn't need to be done is not a problem, so leave that code for IE11. Fixes #14716 Closes gh-1495
* Tests: Fix appendChecked support value for Safari 5.1Michał Gołębiowski2014-01-221-1/+1
|
* Tests: fix Safari userAgent detectionMichał Gołębiowski2014-01-221-3/+3
| | | | (cherry-picked from 3f3f458974fe0bdccfe9042c9503fd2d03e2f6ff)
* Support: Add expected support results for Safari 7 & IE11Michał Gołębiowski2014-01-221-0/+74
|
* Tests: Blacklist one effects test in Chrome 31Michał Gołębiowski2014-01-211-4/+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 (cherry-picked from c11becbb692f7707443eb2582543dfe96e8319e6)
* Traversing: Check all pairwise element combinations for .find( els )Richard Gibson2014-01-171-2/+4
| | | | | | | (cherry picked from commit 391c21b15d769fac1c37631b28c0226f57a59796) Ref b8d0d54a3c4960794a1b492957abeb56eddd1e48 Fixes #14701
* Tests: Fix code style issuesOleg2014-01-161-4/+4
| | | | (cherry-picked from a2250b0f4c157745b8cd8ac1247c6084882c500f)
* Attrs: Restore ability to pass array to jQuery#valOleg2014-01-161-2/+7
| | | | Thanks @gibson042
* Attrs: Fix valHook for option elementOleg2014-01-161-0/+9
| | | | Fixes #14686
* Tests: Fix another issue with sinon timersOleg2014-01-141-10/+1
|
* Ajax: support non-RFC2616 methods for oldIEOleg2014-01-141-0/+11
| | | | | Closes gh-1466 Fixes #13240
* Tests: Fix sinon timers for oldIEOleg2014-01-131-3/+6
|
* Effects: First step() call should match :animated selectorDave Methvin2014-01-091-0/+15
| | | | | | | (cherry picked from commit 085814474e4a854d533b5ccbaef24c090081e0c4) Fixes #14623 Closes gh-1473
* Tests: Fix test broken by previous cherry-pickDave Methvin2014-01-091-3/+5
|
* Effects: Integrate sinon fake timers into testsJohn Paul2014-01-091-288/+204
| | | | | | (cherry picked from commit b407bddea2ae65200df0802bef7cf06c16b5e524) Closes gh-1377
* Tests: Avoid use of QUnit.reset() in tests by splitting themcjqed2014-01-036-216/+555
| | | | | Closes gh-1470 Ref #1457
* traversing: Optimise .add by not using makeArrayTimo Tijhof2013-12-301-27/+111
| | | | | | (cherry picked from commit b39ee05b69336d5a6230287ab8bd48c48e5b206f) Closes gh-1430
* Ajax: don’t test jQuery.ajax() on beforeunload in Chrome 31Michał Gołębiowski2013-12-181-4/+11
| | | | | | | | | Chrome 31 doesn't fire Ajax requests in beforeunload event handler. There is no way for us to workaround it and it's been fixed in Chrome 32 so let's just blacklist Chrome 31 as long as it's in TestSwarm. See https://code.google.com/p/chromium/issues/detail?id=321241 (cherry-picked from fd0bce07584b73fb755574c4d462e0b175d1c6b6)
* Add unit tests for .html( number ). Close gh-1447.Jakob Stoeck2013-11-261-3/+6
| | | | (cherry picked from commit ed291938c287d34fe1183e588e12372e540eb5e7)
* Add es3: true to test/.jshintrc. Make tests conform to that jsHint setting.Michał Gołębiowski2013-11-152-2/+2
|
* Ref 27b22f4e: Remove oldIE-unfriendly trailing commaRichard Gibson2013-11-151-1/+1
|
* Ref 27b22f4e: Don't try to outsmart ApacheRichard Gibson2013-11-141-1/+3
|
* Fix #14503: Cast to string before setting XHR header. Close gh-1427.hongymagic2013-11-141-5/+13
|
* Ref #14180, let focusin/out work on non-element targets.Dave Methvin2013-11-141-0/+13
| | | | | | | (cherry picked from commit c2aca17d457d302cb1683f925b9e5ee93f0984ea) Conflicts: src/event.js
* Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369.Dave Methvin2013-11-121-0/+33
| | | | | (cherry picked from commit ebdb467761d756d4e52608a0df4a4d9b17da8092) (conflicts with .data() resolved manually)
* Fix #14492: More correct jQuery.parseJSON. Close gh-1419.Richard Gibson2013-11-121-6/+69
|
* No ticket. Remove version sniffing from test/unit/support.js, browsers got ↵Michał Gołębiowski2013-11-111-5/+3
| | | | updated.
* No ticket. Restore some parsing tests in core. (cherry-picked from ↵Michał Gołębiowski2013-11-101-5/+8
| | | | 650f325d8e5e9092cd8ca7c1a7ab62c4bba582cf)