aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Css: Use only positive integers as values for widows/orphansMichał Gołębiowski2014-04-181-8/+1
| | | | | | | | | According to http://www.w3.org/TR/CSS2/page.html#propdef-orphans, widows and orphans can take only positive integer values. Together with a Chrome 34 regression this caused the test to fail. Fixes #15016 Closes gh-1563
* Build: Fix code style issueOleg Gaidarenko2014-04-151-1/+0
| | | | Remove needless empty line character
* Tests: Fix failing ajax tests in oldIEOleg Gaidarenko2014-04-155-14/+18
| | | | | | (cherry-picked from the 71780965072b1271018f2cf360e82fbe31f4987e) Picked up so tests from the 1.x-master would be more similar to this branch
* Tests: Bring back some of the clean-up logicOleg Gaidarenko2014-04-151-0/+11
|
* Tests: Remove unused variablesOleg Gaidarenko2014-04-151-2/+2
|
* Tests: Copy some Sizzle combinators testsOleg Gaidarenko2014-04-151-0/+41
|
* Tests: Add more tests for Sizzle attributesOleg Gaidarenko2014-04-151-3/+89
|
* Tests: Add test for selectors with commasOleg Gaidarenko2014-04-151-0/+12
|
* Tests: Copy Sizzle.uniqueSort testsOleg Gaidarenko2014-04-151-0/+79
|
* Tests: Copy Sizzle.contains testsOleg Gaidarenko2014-04-151-0/+26
|
* Tests: Move some of the Sizzle tests to selectorOleg Gaidarenko2014-04-151-0/+93
|
* Tests: Do global clean up in teardown functionOleg Gaidarenko2014-04-151-0/+2
|
* Tests: Improve jsonp testsOleg Gaidarenko2014-04-151-2/+2
| | | | | Since global variable for callback always would be equal to undefined value it better to check for boolean instead
* Tests: Correct logic of a broken assertionOleg Gaidarenko2014-04-151-2/+3
|
* Build: Use jscs to check test helpersOleg Gaidarenko2014-04-152-2/+0
| | | | Also fix issues found by jscs
* Tests: More improvments for testrunnerOleg Gaidarenko2014-04-152-59/+36
| | | | Conform to style guide and simplify it
* Tests: Remove Sizzle intergration testsOleg Gaidarenko2014-04-152-174/+27
| | | | Fixes #14818
* Tests: Simplify globals cleanupOleg Gaidarenko2014-04-151-10/+9
|
* Tests: Remove QUnit start hookOleg Gaidarenko2014-04-151-11/+1
|
* Tests: Remove uselss "keys" helperOleg Gaidarenko2014-04-151-15/+1
|
* Tests: Simplify "testTimeout" optionOleg Gaidarenko2014-04-151-1/+1
|
* Support: Add Android support tests resultsMichał Gołębiowski2014-03-311-11/+43
|
* Effects: Don't overwrite display:none when .hide()ing hidden elementsRichard Gibson2014-03-201-0/+13
| | | | | Fixes #14848 Closes gh-1548
* CSS: jQuery#hide should always save display valueOleg Gaidarenko2014-03-201-0/+10
| | | | | Fixes #14750 Closes gh-1509
* Attributes: Trim whitespace from option text when returned as a valueJohn Hoven2014-03-201-0/+13
| | | | | | | | | | Fixes #14858 Ref #14686 Closes gh-1531 (cherry picked from commit 9ec429cf6270e455aba4eba85f4db80e633806b6) Conflicts: src/attributes/val.js
* Core: Change the sleep time in dont_return.php from 100s to 30sMichał Gołębiowski2014-03-191-1/+1
| | | | | | Half a minute is more than enough for the test to finish even in the slowest browsers and in case of starving the PHP FPM process pool, one has to wait for only half a minute to try again.
* Event: Simplify the logic behind blacklisting Android 2.3 on one testMichał Gołębiowski2014-03-181-7/+4
|
* Event: Don't test stopImmediatePropagation in Android 2.3Michał Gołębiowski2014-03-181-8/+19
| | | | | Android 2.3 doesn't support stopImmediatePropagation; jQuery fallbacks to stopPropagation in such a case.
* Core: Change the sleep time in dont_return.php to a sane valueMichał Gołębiowski2014-03-181-1/+1
| | | | | PHP sleep function accepts time in seconds, not milliseconds; the previous value was starving the PHP FPM process pool.
* Core: Blacklist the ready test on async-loaded jQuery in iOS7Michał Gołębiowski2014-03-171-4/+9
| | | | Fixes #14882
* Event: Unit test for #14741 fixDave Methvin2014-03-161-0/+14
| | | | | Fixes #14741 Closes gh-1503
* Core: Bump timeouts to stabilize doc ready testMichał Gołębiowski2014-03-132-2/+2
| | | | | | The "document ready when jQuery loaded asynchronously" test fails all the time in iOS7 and sometimes in other browsers. Bumping the timeouts *might* help these other browsers to be less flakey here.
* Event: Call underlying stopImmediatePropagation when presentDave Methvin2014-03-121-2/+13
| | | | Fixes #13997
* Support: Make the support matrix for iOS 6 match iOS 7 as wellMichał Gołębiowski2014-03-131-1/+1
|
* 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).
* 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. Fixes #14836 Closes gh-1532
* Ajax, Effects: Disable Chrome 31 workaroundsMichał Gołębiowski2014-03-102-27/+7
|
* Core: Do not run window.onready when readyDave Methvin2014-03-042-0/+31
| | | | Fixes #14802
* CSS: Return values should be numbersDave Methvin2014-03-041-1/+2
| | | | Fixes #14792
* Event: Allow triggerHandler(beforeunload)Dave Methvin2014-03-042-0/+23
| | | | Fixes #14791
* Ajax: .load() should trim its selectorDave Methvin2014-03-042-0/+9
| | | | Fixes #14773
* Core: Arrays like [42] should fail .isNumeric()Dave Methvin2014-03-041-1/+3
| | | | Fixes #14179
* Effects: Don't check fill-opacity in Android 2.3, it's not supportedMichał Gołębiowski2014-02-131-1/+6
|
* 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.
* Css: Don't check fill-opacity in Android 2.3, it's not supportedMichał Gołębiowski2014-02-131-1/+6
|
* Tests: remove all the empty line whitespaceRick Waldron2014-02-112-28/+28
|
* Support: Document box-sizing was unprefixed in Firefox 29Michał Gołębiowski2014-02-052-2/+2
|
* Build: Upgrade QUnit to 1.14.0Michał Gołębiowski2014-02-056-636/+705
|
* Build: Switch to explicit dependencies versions in bower.jsonMichał Gołębiowski2014-02-022-99/+147
|
* Ajax: Protect against exceptions thrown synchronously by xhr.sendjaubourg2014-01-291-0/+30
| | | | | | | | | | | When xhr.send throws an exception synchronously, the onerror handler may have been called already which, unchecked, makes the exception bubble up outside of jQuery.ajax. We now catch the exception pre-emptively and only rethrow if we know it hasn't already been notified through the onerror handler. Fixes #14683