aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Merge pull request #456 from rwldrn/9318Dave Methvin2011-08-051-3/+6
|\ \ \ \ | | | | | | | | | | Improves support for arbitrary numbers in data keys. Fixes #9318
| * | | | Adds failing testsRick Waldron2011-08-051-2/+5
| | | | |
* | | | | Merge pull request #455 from rwldrn/9413Dave Methvin2011-08-051-0/+28
|\ \ \ \ \ | | | | | | | | | | | | Supports interoperable removal of hyphenated/camelCase properties. Fixes #9413
| * | | | | Adds failing tests for #9413Rick Waldron2011-08-051-0/+28
| |/ / / /
* / / / / Fixes assertion counts and dom element fixture issueRick Waldron2011-08-052-22/+22
|/ / / /
* | | | Add test page for crashing IE8 when the testElement in support has a ↵timmywil2011-08-041-0/+5
| | | | | | | | | | | | | | | | background (will run from the test suite). Supplements #9823.
* | | | Now using getAttributeNode in all attribute cases in IE6/7, which normalizes ↵timmywil2011-08-041-23/+22
| | | | | | | | | | | | | | | | attribute behaviors across browsers, is less hacky, and shortens the attribute code. Fixes #9980.
* | | | Make the tabIndex hook first a propHook and add it to attrHooks for ↵timmywil2011-08-041-0/+55
| | | | | | | | | | | | | | | | back-compat reasons. Fixes #9979.
* | | | Merge pull request #367 from gnarf37/index-optimizeDave Methvin2011-08-041-2/+4
|\ \ \ \ | | | | | | | | | | Quick improvement to the performance of .index() with no arguments
| * | | | Quick improvement to the performace of .index() with no arguments - Adding a ↵gnarf2011-06-141-2/+4
| | | | | | | | | | | | | | | | | | | | unit test for .index() of a node without a parent returns -1
* | | | | Merge pull request #416 from gnarf37/ticket_6652Dave Methvin2011-08-041-0/+17
|\ \ \ \ \ | | | | | | | | | | | | CSS: Remove filter from style when setting opacity to 1 - Fixes #6652 - R
| * | | | | Unit test for #6652Corey Frang2011-07-131-0/+17
| | | | | |
* | | | | | Merge pull request #412 from rwldrn/9587Dave Methvin2011-08-041-0/+11
|\ \ \ \ \ \ | | | | | | | | | | | | | | jQuery.clone() check destination child nodes are not null. Fixes #9587
| * | | | | | jQuery.clone() check that destination child nodes are not null. Fixes #9587rwldrn2011-06-151-0/+11
| | | | | | |
* | | | | | | Merge pull request #432 from rwldrn/9794Dave Methvin2011-08-041-0/+26
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Correct non-null|undefined evaluation of data property values. Fixes #9779
| * | | | | | | Correct non-null|undefined evaluation of data property values. Fixes #9794Rick Waldron2011-07-101-0/+26
| | | | | | | |
* | | | | | | | Merge pull request #419 from rwldrn/9630Dave Methvin2011-08-041-0/+10
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Unit tests assert that .contents().hasClass() works as expected. Fixes #9630
| * | | | | | | | Filter hasClass by nodeType 1; Fixes #9630rwldrn2011-06-221-1/+1
| | | | | | | | |
| * | | | | | | | Assert that .contents().hasClass() works as expected. Fixes #9630rwldrn2011-06-211-0/+10
| | |_|/ / / / / | |/| | | | | |
* | | | | | | | Merge pull request #447 from rwldrn/9914Dave Methvin2011-08-041-5/+2
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Removes empty, duplicate named test block. Fixes #9914
| * | | | | | | | Removes empty, duplicate named test block. Fixes #9914Rick Waldron2011-07-261-5/+2
| | |_|_|_|/ / / | |/| | | | | |
* | | | | | | | Merge pull request #448 from rwldrn/9912Dave Methvin2011-08-041-8/+8
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Renames duplicate named test block. Fixes #9912
| * | | | | | | | Renames duplicate named test block. Fixes #9912Rick Waldron2011-07-261-8/+8
| |/ / / / / / /
* | | | | | | | Merge pull request #449 from rwldrn/9913Dave Methvin2011-08-041-19/+0
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Removes duplicate test block. Fixes #9913
| * | | | | | | | Removes duplicate test block. Fixes #9913Rick Waldron2011-07-261-19/+0
| |/ / / / / / /
* / / / / / / / Landing pull request 453. Typo correction strictEquals=>strictEqual. Fixes ↵Rick Waldron2011-08-031-2/+2
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #9964. More Details: - https://github.com/jquery/jquery/pull/453 - http://bugs.jquery.com/ticket/9964
* | | | | | | Fixes #9255: xml parsing error in $.parseXML is now properly detected for ↵jaubourg2011-07-231-2/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | all browsers. Unit test added.
* | | | | | | Fixes #9854: propagates native statusText onto jqXHR.statusText. statusText ↵jaubourg2011-07-231-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | in callbacks is still normalized. Unit test added.
* | | | | | | Fixes #9887: ajax now supports circular references into objects passed as ↵jaubourg2011-07-231-0/+16
| |/ / / / / |/| | | | | | | | | | | | | | | | | context. Prefilter and transport developpers should add their own custom option into flatOptions when needed. Unit test added.
* | | | | | Check the attribute node value for false for HTML5 booleans when not ↵timmywil2011-07-091-8/+15
| | | | | | | | | | | | | | | | | | | | | | | | supported. Fixes #9504.
* | | | | | Fixes #9682. Removes data from the options for request with no content so ↵jaubourg2011-07-011-5/+20
| | | | | | | | | | | | | | | | | | | | | | | | that it is not used again in case of a retry. Unit test added.
* | | | | | Fixes #9446. Context is properly propagated using pipe. If context was the ↵jaubourg2011-07-011-0/+27
|/ / / / / | | | | | | | | | | | | | | | original deferred, then context is updated to next deferred in the chain. Unit tests added.
* / / / / Allow similarly named classes (regression from 9499) and switch class ↵timmywil2011-06-191-4/+11
|/ / / / | | | | | | | | | | | | retrieval to property when passing class to value functions. Fixes #9617.
* | | | Landing pull request 409. Adds fillOpacity to internal cssNumber. Fixes #9548.rwldrn2011-06-141-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/409 - http://bugs.jquery.com/ticket/9548
* | | | Landing pull request 397. withinElement rewrite in event. Fixes #6234, ↵rwldrn2011-06-141-0/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #9357, #9447. More Details: - https://github.com/jquery/jquery/pull/397 - http://bugs.jquery.com/ticket/6234 - http://bugs.jquery.com/ticket/9357 - http://bugs.jquery.com/ticket/9447
* | | | Attribute hooks do not need to be attached in XML docs. Fixes #9568.timmywil2011-06-131-3/+4
| | | |
* | | | Check classes passed for duplicates. Fixes #9499.timmywil2011-06-071-2/+11
| | | |
* | | | Optimize width/height retrieval (moved logic to getWH, removed adjustWH). ↵timmywil2011-06-061-7/+8
| | | | | | | | | | | | | | | | Supplements #9441, #9300.
* | | | Add margin after checking width. Add tests. Fixes #9441. Fixes #9300.Mike Sherov2011-06-061-0/+24
| | | |
* | | | Landing pull request 403. Check for both camelized and hyphenated data ↵rwldrn2011-06-061-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | property names; Fixes #9301. More Details: - https://github.com/jquery/jquery/pull/403 - http://bugs.jquery.com/ticket/9301
* | | | Add test for appending an xml element to another. Supplements #9370.timmywil2011-05-251-0/+34
| | | |
* | | | Return null for outer/inner width/height calls on window/document. Fixes #7557.timmywil2011-05-251-4/+26
| | | |
* | | | Landing pull request 383. Relocating jQuery.camelCase to core; Fixes #9368.rwldrn2011-05-251-0/+14
|/ / / | | | | | | | | | | | | | | | More Details: - https://github.com/jquery/jquery/pull/383 - http://bugs.jquery.com/ticket/9368
* | | Landing pull request 382. Adds support for number values (meter,progress); ↵rwldrn2011-05-201-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #9319. More Details: - https://github.com/jquery/jquery/pull/382 - http://bugs.jquery.com/ticket/9319
* | | Handle unset value attributes consistently depending on property existence. ↵timmywil2011-05-181-1/+3
| | | | | | | | | | | | Supplements #9328.
* | | Make the value hook less obtrusive for elements which do not inherently have ↵timmywil2011-05-181-1/+2
| | | | | | | | | | | | a value property. Fixes #9328.
* | | Switched title attribute to getAttributeNode for IE6/7. Fixes #9329.timmywil2011-05-181-4/+6
| | |
* | | Landing pull request 377. Check custom data != null(undefined), allows zero; ↵Rick Waldron2011-05-161-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | Fixes #9285. More Details: - https://github.com/jquery/jquery/pull/377 - http://bugs.jquery.com/ticket/9285
* | | Use getAttributeNode for ^on attributes in IE6/7 to avoid anonymous function ↵timmywil2011-05-161-2/+5
| | | | | | | | | | | | wrapper. Fixes #9298.
* | | Retrieve the class attribute on a form in IE6/7. Fixes 9286.timmywil2011-05-141-1/+4
| | |