| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
Closes gh-2479
|
|
|
|
|
|
|
|
|
| |
IE 8 doesn't have indexOf on arrays. Also, one toLowerCase() was missing. Oops.
This commit is not necessary on master but has been brought here to keep
tests similar in both branches.
(cherry-picked from 1b48eef4caf7fa3aba0ee1a3473e0d46487d20ea)
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
| |
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.
Refs 2c7e9c934971500a746d012c529e13ec0b560a83
|
|
|
|
|
|
| |
Fixes gh-2505
Closes gh-2509
Refs gh-2483
|
|
|
|
|
|
| |
Provocated by jscs-dev/node-jscs@2de68c0d8351103bb2a989dc942ab47a391d3546
Closes gh-2578
|
|
|
|
|
|
|
|
| |
* Remove QUnit jshint globals
* Extend QUnit.assert methods
* Use assert.async instead of start/stop/done
Ref b930d14ce64937e9478405eee2828d4da091d2cb
|
|
|
|
|
| |
Fixes gh-2283
Closes gh-2292
|
|
|
|
| |
Closes gh-2554
|
|
|
|
|
|
| |
jQuery.acceptData is an undocumented internal API that shouldn't be exposed.
Fixes gh-2555
|
|
|
|
|
|
|
|
|
|
| |
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.
Refs 62acda819f9b6fba9263d0b613e15285807b23a7
|
|
|
|
| |
Closes gh-2436
|
|
|
|
|
| |
Fixes gh-2367
Closes gh-2376
|
| |
|
|
|
|
| |
Fixes gh-2056
|
|
|
|
| |
Fixes gh-2437
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Fixes gh-2540
|
|
|
|
|
|
| |
Closes gh-2529
Ref trac-13208
(cherry picked from commit fc2ba2e1361126c39f955437ee025cfca3bffa65)
|
|
|
|
| |
Closes gh-2507
|
|
|
|
| |
Closes gh-2487
|
|
|
|
|
| |
Fixes gh-2503
Closes gh-2480
|
|
|
|
|
|
|
|
|
|
| |
Android 2.3 doesn't fire the window.onerror handler, just accept the reality
there and skip the test.
Refs gh-1573
Refs gh-1786
Refs jquery/jquery.com#108
Closes gh-2458
|
|
|
|
|
|
|
|
| |
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.
Refs gh-2482
|
|
|
|
|
| |
Fixes gh-2267
Closes gh-2363
|
|
|
|
|
|
|
|
|
|
|
| |
Android 2.3 chokes on unquoted reserved words being used as property names
which was making Deferred tests not run.
Acknowledge the sad fact that Android 2.3 is not ES5-compliant browser
and enable the "es3" option in JSHint config.
Fixes gh-2478
Closes gh-2481
|
|
|
|
|
| |
Fixes gh-2323
Closes gh-2464
|
| |
|
|
|
|
|
|
| |
Refs gh-1764
Refs gh-2401
Closes gh-2425
|
|
|
|
|
| |
Fixes gh-1724
Closes gh-2439
|
|
|
|
| |
Fixes gh-2102
|
|
|
|
| |
The CSS value rounding error was causig failures on FF and IE.
|
|
|
|
| |
Closes gh-2326
|
| |
|
|
|
|
|
| |
- Also add comments to hidden/disconnected tests noting
this is to ensure consistency between branches
|
|
|
|
|
| |
Fixes gh-2310
Close gh-2396
|
|
|
|
| |
This reverts commit 0d11c1182f2012cd6eb06ce1e3fa5a495af9bee3.
|
|
|
|
|
|
|
| |
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.
Fixes gh-2398
|
|
|
|
|
|
| |
The version will change in the future, matching by /edge\//i is enough
Refs 8e111df641cca3e1b75b31a1971bfc89014b4ded
|
|
|
|
|
| |
The Microsoft Edge user agent contains "Chrome" so it needs to be checked
before Chrome.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Make iterating over jQuery objects possible using ES 2015 for-of:
for ( node of $( "<div id=narwhal>" ) ) {
console.log( node.id ); // "narwhal"
}
Fixes gh-1693
|
|
|
|
| |
Utilize the assert module, avoid inline JSHint comments.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
Fixes gh-2015
Closes gh-2298
|
|
|
|
|
| |
Closes gh-2335
Ref 7475d5debeb7c53158921ed40f6c2fdb25a2cc86
|
|
|
|
|
| |
Fixes gh-2300
Closes gh-2303
|
|
|
|
|
|
| |
Fixes gh-2286
Closes gh-2287
Ref trac-11733
|
|
|
|
| |
Closes gh-2312
|
|
|
|
|
| |
Fixes gh-1708
Close gh-1714
|
|
|
|
|
| |
Fixes gh-2264
Close gh-2265
|