aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix #9901, verified by this unit test.Dave Methvin2011-09-201-1/+3
| |
* | Landing pull request 491. Fix #7322. Make `.is()` with a positional selector ↵Dave Methvin2011-09-191-0/+40
| | | | | | | | | | | | | | | | work like delegated event logic. Fixes #7322. More Details: - https://github.com/jquery/jquery/pull/491 - http://bugs.jquery.com/ticket/7322
* | Move filter tests to proper locationtimmywil2011-09-191-44/+45
| |
* | Added filtering tests and updating sizzle to fix filtering with positional ↵timmywil2011-09-191-0/+43
| | | | | | | | selectors. Fixes #10315.
* | Landing pull request 512. 1.7 - removeData now takes space separated lists ↵Corey Frang2011-09-191-1/+23
| | | | | | | | | | | | | | | | and arrays of keys - Fixes #7323. More Details: - https://github.com/jquery/jquery/pull/512 - http://bugs.jquery.com/ticket/7323
* | Landing pull request 492. 1.7 Remove multiple attributes (Symmetry with ↵Rick Waldron2011-09-191-0/+22
| | | | | | | | | | | | | | | | removeClass) Combines patches submitted by leeoniya, zertosh and my own tests. Fixes #5479. More Details: - https://github.com/jquery/jquery/pull/492 - http://bugs.jquery.com/ticket/5479
* | Landing pull request 477. 1.7 jQuery.offset.supportsFixedPosition. Fixes #6809.Rick Waldron2011-09-191-4/+2
| | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/477 - http://bugs.jquery.com/ticket/6809
* | Landing pull request 490. 1.7 HTML5 Support for innerHTML, clone & style. ↵Rick Waldron2011-09-191-0/+32
| | | | | | | | | | | | | | | | Fixes #6485. More Details: - https://github.com/jquery/jquery/pull/490 - http://bugs.jquery.com/ticket/6485
* | Landing pull request 331. Add support for registering jQuery as an AMD ↵jrburke2011-09-191-0/+6
|\ \ | | | | | | | | | | | | | | | | | | | | | 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/+7
| | | | | | | | | | | | loader indicates it has special allowances for multiple versions of jQuery being loaded in a page.
* | | Landing pull request 503. 1.7 data: set a flag in the private data cache to ↵Corey Frang2011-09-191-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | avoid having to scan attributes multiple times - Fixes #8909. More Details: - https://github.com/jquery/jquery/pull/503 - http://bugs.jquery.com/ticket/8909
* | | Landing pull request 500. 1.7 - "public data" stored as a key on "internal ↵Corey Frang2011-09-191-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | data" - Fixes #8921. More Details: - https://github.com/jquery/jquery/pull/500 - http://bugs.jquery.com/ticket/8921
* | | Landing pull request 496. 1.7 animate: allow named queues to be used by ↵Corey Frang2011-09-191-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | animate. Fixes #9280. More Details: - https://github.com/jquery/jquery/pull/496 - http://bugs.jquery.com/ticket/9280
* | | Add sparse array performance improvement for inArray. Thanks rwaldron, ↵timmywil2011-09-191-1/+1
| | | | | | | | | | | | rkatic, and jdalton
* | | Call .is(:visible) on the window or document does not thrown an error in IE. ↵timmywil2011-09-191-5/+8
| | | | | | | | | | | | Fixes #10267.
* | | Check for property support in the boolHook before falling back to attribute ↵timmywil2011-09-191-8/+12
| | | | | | | | | | | | node. Fixes #10278.
* | | Rework #1486 patch to avoid `try/catch` and look for hidden elements by ↵Dave Methvin2011-09-191-0/+25
| | | | | | | | | | | | `.offsetWidth`. Unit test currently disabled due to Chrome bug.
* | | Fixes for IE8. Avoid killer recursion in special events during removal. Use ↵Dave Methvin2011-09-191-3/+12
| | | | | | | | | | | | q instead of quote in unit tests.
* | | Rework the special events interface to add handle and trigger hooks. Modify ↵Dave Methvin2011-09-191-0/+3
| | | | | | | | | | | | IE change/submit special events to take advantage of them. Rewrite mouseover/enter code as special events rather than inline code. In the event unit test, set a tabindex on the div element and focus it first to justify a legitimate blur event.
* | | Fixes #8858. Pass the .trigger(..., data) to the event.special._default method.Dave Methvin2011-09-191-5/+6
| | |
* | | Add unit tests for quickIs cases and fix the regexp as a result.Dave Methvin2011-09-191-5/+37
| | |
* | | Cleanup for on/off unit test.Dave Methvin2011-09-191-4/+5
| | |
* | | jQuery 1.7 event work:Dave Methvin2011-09-191-2/+110
| | | | | | | | | | | | | | | | | | | | | | | | Add .on() and .off() methods. Write existing methods in terms of on/off. Rewrite delegated handling to remove "live" event. Fix existing code for jQuery style guide. Fix existing bug in unit tests calling .undelegate()
* | | Fix bad calls to .undelegate().Dave Methvin2011-09-191-11/+4
| | | | | | | | | | | | Remove two tests that assume "live" data structure.
* | | Remove unnecessary commented codetimmywil2011-09-191-16/+0
| | |
* | | Allow second argument to be passed to array.indexOf. Fixes #9453.timmywil2011-09-191-0/+36
| | |
* | | Removing topic.js as it will be a plugintimmywil2011-09-191-68/+0
| | |
* | | $.Callbacks, $.Topic and notify/progress on $.Deferred.jaubourg2011-09-193-117/+362
| | |
* | | Animation state is tracked on toggled/stopped animations using the private ↵timmywil2011-09-191-88/+154
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | data cache. Fixes #8685. See full commit message for more. Fixes #6641. - Example: http://jsfiddle.net/timmywil/gqZL5/24/ - http://bugs.jquery.com/ticket/8685 - Check the completed timer has not been removed already so other timers do not get accidentally removed. Fixes #6641. - Style edits, code reductions, and optimizations for the effects module
* | | Override Sizzle attribute retrieval with jQuery.attr. Fixes #5637, #7128, ↵timmywil2011-09-193-9/+147
| | | | | | | | | | | | | | | | | | #9261, #9570, #10178. Bug fixed on the side: $(window).is('a') was throwing an exception. Fixes #10178.
* | | Fix #10208. Check for `button` as well as `input` when performing the #7071 ↵Dave Methvin2011-09-071-1/+5
| | | | | | | | | | | | VML crash workaround for IE special-events submit code.
* | | Bug in rmultidash. Fixes #10194rwldrn2011-09-071-10/+13
| | |
* | | Considers Safari XMLHttpRequest's bug when testing for custom status text. ↵jaubourg2011-08-271-2/+2
| | | | | | | | | | | | Will have to be revisited when $.browser.chrome is introduced.
* | | Revert back to always setting the attribute to empty string before removal. ↵timmywil2011-08-251-8/+9
| | | | | | | | | | | | Fixes #9699.
* | | Merge pull request #445 from rwldrn/9897Dave Methvin2011-08-251-1/+8
|\ \ \ | | | | | | | | Fixes #9897. Wrap obj.constructor test in try/catch to avoid problems with host objects. Thanks to bkrausz.
| * | | Wrap obj.constructor test in try/catch. Thanks to bkrausz. Fixes #9897Rick Waldron2011-07-251-1/+8
| | | |
* | | | Merge pull request #464 from dmethvin/fix-10021-relative-negative-valuesDave Methvin2011-08-251-1/+7
|\ \ \ \ | | | | | | | | | | Fixes #10021. Allow negative relative values for `.css()`
| * | | | Fixes #10021. Allow negative relative values for `.css()` (e.g., ↵Dave Methvin2011-08-161-1/+7
| | | | | | | | | | | | | | | | | | | | `"+=-20px"`) since `.animate()` already allows it. Useful for when the relative value is a variable.
* | | | | Merge pull request #465 from anton-ryzhov/masterDave Methvin2011-08-251-0/+10
|\ \ \ \ \ | | | | | | | | | | | | Fixes #10076. $.inArray crashes IE6 and Chrome if second argument is `null` or `undefined` (Thanks anton-ryzhov!)
| * | | | | Unit test for this caseAnton Ryzhov2011-08-171-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | Codestyle fixes
* | | | | | Merge pull request #468 from rwldrn/10080Dave Methvin2011-08-251-0/+13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fixes #10080. Test cache for window inference.
| * | | | | | Test for window inference. Fixes #10080rwldrn2011-08-181-0/+13
| | | | | | |
* | | | | | | Prioritize #id over <tag> to avoid XSS via location.hash (#9521)Dave Methvin2011-08-231-0/+18
| | | | | | |
* | | | | | | Revert "Landing pull request 461. Adds a due diligence check for pre-defined ↵timmywil2011-08-221-12/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | data-* attrs during removal. Fixes #10026." This reverts commit 6805fc2cd20e36af5c1b0c51f6f39f21cea4609a. A more cache-friendly solution is in the works.
* | | | | | | Landing pull request 461. Adds a due diligence check for pre-defined data-* ↵Rick Waldron2011-08-221-1/+12
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | attrs during removal. Fixes #10026. More Details: - https://github.com/jquery/jquery/pull/461 - http://bugs.jquery.com/ticket/10026
* | | | | | Landing pull request 463. Fixes #9572. Don't camelize the `-ms-` prefix ↵dmethvin2011-08-171-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | because Microsoft didn't. A Fixes #9572. More Details: - https://github.com/jquery/jquery/pull/463 - http://bugs.jquery.com/ticket/9572
* | | | | | Landing pull request 467. Adds comments regarding opacity test adjustments.Rick Waldron2011-08-171-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/467
* | | | | | Landing pull request 466. Test if opacity is not expected val. Fixes effects ↵rwldrn2011-08-171-7/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | test suite. More Details: - https://github.com/jquery/jquery/pull/466
* | | | | | Set back the offset test name to fix offset tests; iframe retrieval is based ↵timmywil2011-08-171-1/+1
|/ / / / / | | | | | | | | | | | | | | | on test names
* / / / / Fix effects test suite to account for opacity being removed rather than ↵timmywil2011-08-161-1/+4
|/ / / / | | | | | | | | | | | | explicity set to 1