aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
Commit message (Collapse)AuthorAgeFilesLines
...
* Transform $.bindReady into $.ready.promise. It is now possible to use ↵jaubourg2012-05-061-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 Sherov2012-05-042-0/+2
| | | | we're really ready
* remove jQuery.quickReady, save bytes, style nits in testsMike Sherov2012-05-044-64/+32
|
* Fix #10067. Create jQuery.quickReady; closes gh-736.Mike Sherov2012-04-239-15/+113
| | | | 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.
* Enforce 20s timeout for all unit tests.Timo Tijhof2012-04-201-4/+20
|
* Remove Ajax requirement for simple XML testsYehuda Katz2012-04-151-1/+50
| | | | | | | | | | | | Previously, all jQuery tests that wanted an XML document would make an Ajax request to go through jQuery's XML parsing logic in jQuery.ajax. Now, use jQuery.parseXML instead. This removes the need for the Ajax server for these tests, improves their performance, and decouples simple core tests from Ajax. (with scottgonzalez)
* Revert "No more php/js logic duplication..." on a hunch.Dave Methvin2012-03-071-59/+103
| | | | | | TestSwarm hasn't been happy since this commit, and everyone deserves to be happy. This reverts commit 318d47b730769f538dbc24800b9ad67ff8e73ea9.
* Makes sure start is always called with default context and no arguments. ↵jaubourg2012-03-071-1/+9
| | | | Should stop FF from acting up. Hopefully, this ugly patch can be removed in the future.
* Fixes #11264 or rather seriously limits the risk of global ajaxSettings ↵jaubourg2012-03-071-0/+1
| | | | screwing with script loading in domManip. Gotta love globals and sneaky dependencies. Unit test added.
* Fixes #11426: getting the responseText of an xhr should be tried/caught ↵jaubourg2012-03-071-0/+0
| | | | because of IE's inability to give access to binary data. Unit test added.
* Not testing his code properly makes Julian a silly coder.jaubourg2012-03-071-2/+2
|
* No more php/js logic duplication. Ensures modules are still loaded ↵jaubourg2012-03-071-103/+59
| | | | separately when using "file:" protocol (makes debugging much easier, /kiss @rwaldron). Ensures test iframes will use the same jquery as specified in the main document. Known issue: chrome will cringe at cross-frame access using file: protocol, apparently chrome sees this as cross-domain... go figure.
* Fix #3838, $(document).height() incorrect in IE6Mike Sherov2012-03-022-0/+28
| | | | May still be broken in Netscape Navigator 4.
* Fix #7986. $.support.boxModel shan't be fooled by page-level CSS.Mike Sherov2012-02-241-0/+7
|
* fixes #10693, generalizes the "test something in an iframe" code when a ↵Mike Sherov2012-02-231-0/+32
| | | | callback isn't needed
* fixes #10901, PHP required for unit tests, but still allow the tests to runMike Sherov2012-02-162-4/+10
|
* Fix #11257. Correct path to source files.Rick Waldron2012-01-301-3/+2
|
* Fix #10931: Make unit tests work without web access.Richard Gibson2012-01-121-2/+2
| | | | | Applies https://github.com/gibson042/jquery/tree/10931 to dd900460ac6f77be71ceb878bc2cd1465397dc60
* Fix #10902. DRY up the ways to include src files in tests.Mike Sherov2012-01-1114-186/+114
|
* Remove the invisible body in support; Add temporary tests to verify correct ↵timmywil2011-11-171-1/+1
| | | | support completions for upcoming support changes.
* Fix error in test suite from testElementCrash.html; did not have callbacks.jstimmywil2011-11-161-0/+1
|
* Fix #10691. Remove all instances of equals() and same(), as these are ↵Mike Sherov2011-11-062-11/+5
| | | | deprecated in QUnit.
* Pass iframe support tests at doc ready. Fixes support fail in FF7timmywil2011-10-311-1/+3
|
* Add a way to fire native events using dispatchEvent/fireEvent in ↵timmywil2011-10-281-1/+15
| | | | testinit.js; fixes failing click test in FF3.6
* Landing pull request 550. IE6,7,8 cannot use cached fragments from unknown ↵timmywil2011-10-231-0/+3
| | | | | | | | elems. Fixes #10501. More Details: - https://github.com/jquery/jquery/pull/550 - http://bugs.jquery.com/ticket/10501
* Run ajax tests in swarmtimmywil2011-10-131-1/+1
|
* Update sizzle; Add sizzle cache collision iframe test. Fixes #8539.timmywil2011-10-132-22/+62
|
* Landing pull request 331. Add support for registering jQuery as an AMD ↵jrburke2011-09-191-1/+13
|\ | | | | | | | | | | | | | | module. Fixes #7102. More Details: - https://github.com/jquery/jquery/pull/331 - http://bugs.jquery.com/ticket/7102
| * Add support for registering jQuery as an AMD module. Only does so if the AMD ↵jrburke2011-04-161-1/+13
| | | | | | | | loader indicates it has special allowances for multiple versions of jQuery being loaded in a page.
* | Removing topic.js as it will be a plugintimmywil2011-09-1911-10/+1
| |
* | $.Callbacks, $.Topic and notify/progress on $.Deferred.jaubourg2011-09-1910-0/+20
| |
* | Override Sizzle attribute retrieval with jQuery.attr. Fixes #5637, #7128, ↵timmywil2011-09-192-2/+133
| | | | | | | | | | | | #9261, #9570, #10178. Bug fixed on the side: $(window).is('a') was throwing an exception. Fixes #10178.
* | Revert "Begrudgingly adds chrome detection to jQuery.browser (1.7). Fixes #9385"timmywil2011-08-261-2/+2
| | | | | | | | This reverts commit dd93d0eb32dc638ff3319792a885acd6d3c25c30.
* | Revert "Updated version numbers; Fixes #9385"timmywil2011-08-261-2/+2
| | | | | | | | This reverts commit 09fe3ea265d730cc5e2dd2705d5a60ffd382d166.
* | Add test page for crashing IE8 when the testElement in support has a ↵timmywil2011-08-041-0/+19
| | | | | | | | background (will run from the test suite). Supplements #9823.
* | Merge pull request #416 from gnarf37/ticket_6652Dave Methvin2011-08-041-0/+2
|\ \ | | | | | | CSS: Remove filter from style when setting opacity to 1 - Fixes #6652 - R
| * | Unit test for #6652Corey Frang2011-07-131-0/+2
| | |
* | | Merge pull request #417 from rwldrn/9385Dave Methvin2011-08-041-2/+2
|\ \ \ | | | | | | | | Begrudgingly adds chrome detection to jQuery.browser (1.7). Fixes #9385
| * | | Updated version numbers; Fixes #9385rwldrn2011-06-231-2/+2
| | | |
| * | | Begrudgingly adds chrome detection to jQuery.browser (1.7). Fixes #9385rwldrn2011-06-201-2/+2
| |/ /
* | | Fixes #9854: propagates native statusText onto jqXHR.statusText. statusText ↵jaubourg2011-07-231-0/+5
| | | | | | | | | | | | in callbacks is still normalized. Unit test added.
* | | Landing pull request 433. Fix testswarm test cases. Fixes #9555.Krinkle2011-07-122-2/+2
|/ / | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/433 - http://bugs.jquery.com/ticket/9555
* | Attribute hooks do not need to be attached in XML docs. Fixes #9568.timmywil2011-06-131-1/+1
| |
* | Check classes passed for duplicates. Fixes #9499.timmywil2011-06-071-1/+1
| |
* | Attach background data to divs as welltimmywil2011-05-251-1/+1
| |
* | Remove unnecessary background setting in support now that we have the div ↵timmywil2011-05-251-0/+4
| | | | | | | | reversion. Test added.
* | Adds iframe code for #9239.jaubourg2011-05-131-0/+37
| |
* | Adds unit/support.js to unit tests. Still have to test for #8763 has to be ↵jaubourg2011-05-102-0/+52
| | | | | | | | done in its own file however, since Firefox refuses to notify global errors in the iframe (attachEvent, window.onerror and script.onerror all fail).
* | Avoid changing html in two places; add minified jQuery as an option to the ↵timmywil2011-05-022-3/+8
| | | | | | | | main test page
* | Syntax in testrunnertimmywil2011-04-281-2/+3
| |