Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tests: Make the beforeunload event tests work regardless of extensions | Michał Gołębiowski-Owczarek | 2024-04-25 | 1 | -5/+6 |
| | | | | | | | | | | | Some browser extensions, like React DevTools, send messages to the content area. Since our beforeunload event test listens for all messages, it used to catch those as well, failing the test. Add a `source` field to the payload JSON and check for it before treating the message as coming from our own test to make sure the test passes even with such browser extensions installed. Closes gh-5478 | ||||
* | Docs: Replace `#NUMBER` Trac issue references with `trac-NUMBER` | Michał Gołębiowski-Owczarek | 2022-01-04 | 4 | -4/+4 |
| | | | | | | | | | | | | | The GitHub UI treats `#NUMBER` as referring to its own issues which is confusing when in jQuery source it's usually referring to the old deprecated Trac instance at https://bugs.jquery.com. This change replaces all such Trac references with `trac-NUMBER`. A few of the references came with the Sizzle integration and referred to the Sizzle GitHub bug tracker. Those have been replaced with full links instead. A new entry describing issue reference conventions has been added to README. Closes gh-4993 | ||||
* | Tests: Add support for running unit tests via grunt with karma | Timo Tijhof | 2017-12-18 | 2 | -2/+2 |
| | | | | | | | | | | | | | - Update QUnit to 1.23.1 - Remove unused dl#dl from test/index.html - Remove unused map#imgmap from test/index.html - Ensure all urls to data use baseURI - Add the 'grunt karma:main' task - customContextFile & customDebugFile - Add 'npm run jenkins' script Close gh-3744 Fixes gh-1999 | ||||
* | Tests: Refactor testIframe() to make it DRYer and more consistent | Dave Methvin | 2016-04-11 | 6 | -8/+14 |
| | | | | | Ref gh-3040 Closes gh-3049 | ||||
* | Event: Make event aliases optional in unit tests | Dave Methvin | 2015-11-06 | 1 | -1/+1 |
| | |||||
* | Core: use interactive to evaluate dom ready, barring IE9-10 | Timmy Willison | 2015-10-29 | 1 | -0/+23 |
| | | | | Fixes gh-2100 | ||||
* | Ajax: Always use script injection in globalEval | Oleg Gaidarenko | 2014-06-16 | 2 | -5/+1 |
| | | | | | Fixes #14757 Closes gh-1449 | ||||
* | Event: Allow triggerHandler(beforeunload) | Dave Methvin | 2014-03-04 | 1 | -0/+18 |
| | | | | Fixes #14791 | ||||
* | Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369. | Dave Methvin | 2013-11-12 | 1 | -0/+18 |
| | |||||
* | Revert "Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369." | Dave Methvin | 2013-10-22 | 1 | -18/+0 |
| | | | | This reverts commit 9b6f0745805941a6d7b7c16c02cf56ab00021c82. | ||||
* | Fix #14180. Allow cross-frame use of focusin/out. Close gh-1369. | Dave Methvin | 2013-10-22 | 1 | -0/+18 |
| | |||||
* | Correct spacing. | Michał Gołębiowski | 2013-04-15 | 1 | -9/+9 |
| | |||||
* | Fix #13393. Avoid IE9 activeElement of death. | Dave Methvin | 2013-04-08 | 1 | -0/+16 |
| | |||||
* | Ref #13316: Sync all documents on full vs. minified source. Close gh-1147. | Richard Gibson | 2013-02-07 | 3 | -2/+22 |
| | |||||
* | Fix #13316. Use minified version in unit testing. | Dave Methvin | 2013-01-26 | 2 | -2/+2 |
| | |||||
* | Scorch the earth and retreat on readyState interactive! Close gh-907. | Mike Sherov | 2012-08-23 | 4 | -102/+0 |
| | |||||
* | Neuter the partialLoadReady test until it's ngnix-ready | Dave Methvin | 2012-08-22 | 1 | -3/+3 |
| | |||||
* | Fix #12282. IE has premature .readyState == "interactive". Close gh-901. | Mike Sherov | 2012-08-20 | 1 | -0/+40 |
| | |||||
* | Fix #12018, readyState "interactive" in oldIE lies! Closes gh-848. | Mike Sherov | 2012-07-06 | 5 | -23/+57 |
| | |||||
* | Relativize all urls pertaining to dist/jquery.js so users can run their ↵ | timmywil | 2012-06-04 | 3 | -3/+3 |
| | | | | server from any file location; Make sure Sizzle is available for its tests in testrunner. | ||||
* | Strips IIFEs from modules; Always require built jQuery for tests. | Rick Waldron | 2012-06-04 | 3 | -5/+5 |
| | |||||
* | Fix indentation in /speed and /test dirs, closes gh-780. | Trey Hunner | 2012-05-18 | 1 | -2/+2 |
| | |||||
* | Transform $.bindReady into $.ready.promise. It is now possible to use ↵ | jaubourg | 2012-05-06 | 1 | -0/+17 |
| | | | | $.ready.promise or $.when( $.ready ) to get the ready promise. Costs *1* byte min/gzipped. Unit test added. | ||||
* | reduce complexity of ready further, and try manipulating DOM to make sure ↵ | Mike Sherov | 2012-05-04 | 2 | -0/+2 |
| | | | | we're really ready | ||||
* | remove jQuery.quickReady, save bytes, style nits in tests | Mike Sherov | 2012-05-04 | 4 | -64/+32 |
| | |||||
* | Fix #10067. Create jQuery.quickReady; closes gh-736. | Mike Sherov | 2012-04-23 | 4 | -0/+85 |
Allows us to get to the ready state sooner by not waiting for iframes to load. If that causes backcompat pain, use `jQuery.quickReady = false` as prescribed by your developer. |