aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
Commit message (Collapse)AuthorAgeFilesLines
* Make sure that data properties with hyphens are always accessed/set using ↵John Resig2011-05-101-2/+7
| | | | camelCase. Fixes #9124.
* Landing pull request 374. .animate() Callbacks should fire in correct order ↵louisremi2011-05-101-0/+16
|\ | | | | | | | | | | | | | | (unit test included). Fixes #9100. More Details: - https://github.com/jquery/jquery/pull/374 - https://github.com/jquery/jquery/issues/9100
| * oops consolelouisremi2011-05-101-1/+0
| |
| * oops unit testlouisremi2011-05-091-0/+17
| |
* | Adds unit/support.js to unit tests. Still have to test for #8763 has to be ↵jaubourg2011-05-101-0/+32
| | | | | | | | done in its own file however, since Firefox refuses to notify global errors in the iframe (attachEvent, window.onerror and script.onerror all fail).
* | Add fallback to prop for the window and document. Switch value to use the ↵timmywil2011-05-101-16/+20
| | | | | | | | property instead of the attribute for back compat.
* | Fixes #9104. Returning null or undefined in a pipe callback shouldn't end up ↵jaubourg2011-05-091-2/+10
| | | | | | | | throwing an exception. Silly, silly, me.
* | Remove value check from formHook; other elements can use value hooktimmywil2011-05-071-1/+3
| |
* | Call extend on prop to avoid changing original properties so that ↵timmywil2011-05-071-7/+10
| | | | | | | | per-property easing is not lost in multiple animations with the same props
* | Set val before hide/show check and fix easing setting; also update ↵timmywil2011-05-072-18/+19
| | | | | | | | | | | | attributes test for autofocus - The object passed should not change so it can be used in future animates, updated src and tests accordingly.
* | Fix per-property easing. Fixes #9067Daniel Pihlstrom2011-05-071-4/+12
| |
* | Landing pull request 372. Test for numeric properties was using wrong ↵gnarf2011-05-071-3/+31
| | | | | | | | | | | | | | variable. Fixes #9074. More Details: - https://github.com/jquery/jquery/pull/372
* | Reduce the boolean list only to those that have corresponding IDLs that ↵timmywil2011-05-071-1/+1
| | | | | | | | | | | | don't require being added to propFix; only set the IDL if it exists - See http://jsfiddle.net/timmywil/u5NLn/ for how boolean attributes are handled in every browser.
* | Check empty string instead of specified as specified is inconsistent on the ↵timmywil2011-05-061-1/+3
| | | | | | | | name attribute. Fixes #9148.
* | Add support for the contenteditable attributetimmywil2011-05-051-2/+6
| |
* | Set the property corresponding to a boolean attribute when setting to true. ↵timmywil2011-05-041-1/+2
| | | | | | | | | | | | Fixes #9103. - Once boolean properties had been modified natively, setting the attribute no longer set the current value
* | Set corresponding property to false when removing boolean attributes. Fixes ↵timmywil2011-05-041-1/+6
| | | | | | | | #9094
* | Update boolean check to avoid crashes, add all name fixes to propFix ↵timmywil2011-05-041-50/+75
| | | | | | | | (properties are case-sensitive in all browsers), add tests for prop
* | If no hook is provided, and a boolean property exists, use that to return an ↵John Resig2011-05-031-4/+29
| | | | | | | | attribute-style value for boolean attributes. Fixes #9079.
* | Fix problem with appending multiple string arguments in IE 6. Fixes #9072.John Resig2011-05-031-1/+12
| |
* | Fix setting value attributes on option elements. Fixes #9071.timmywil2011-05-031-1/+3
| |
* | Make sure that empty nodelists continue to map properly. Fixes #8993.John Resig2011-05-021-1/+7
| |
* | Change check for skipping the initial quickExpr RegExp check. Fixes #8984.John Resig2011-05-021-1/+12
| |
* | Test for a colon in attribute names for IE6/7. Fixes #1591.timmywil2011-05-011-1/+5
| |
* | Restored /g flag to rspaces; Adds unit tests; Supplements #9008Rick Waldron2011-04-281-0/+16
| |
* | Landing pull request 357. Update unit tests for widows & orphans. ↵rwldrn2011-04-281-4/+4
| | | | | | | | | | | | | | | | Supplements #8971 Fixes #8971. More Details: - https://github.com/jquery/jquery/pull/357 - http://bugs.jquery.com/ticket/8971
* | Correct the attachment of the p tag in the widows/orphans tests. Fixes test ↵timmywil2011-04-271-1/+1
|/ | | | suite in IE8
* Merged pull request #345 from rwldrn/8971.timmywil2011-04-251-13/+20
|\ | | | | No need to test for widows & orphans values in IE6-8. Fixes #8971
| * No need to test for widows & orphans values in IE6-8. Fixes #8971rwldrn2011-04-251-13/+20
| |
* | Add tests data- and aria- attributes and the autofocus boolean attribute and ↵timmywil2011-04-251-3/+11
|/ | | | some style updates in jQuery.attr
* Disabling .add(form.elements) unit test.John Resig2011-04-221-2/+7
|
* Landing pull request 340. Adds widows, orphans to cssNumber hash; includes ↵Rick Waldron2011-04-221-1/+25
| | | | | | | | tests. Fixes #8936. More Details: - https://github.com/jquery/jquery/pull/340 - http://bugs.jquery.com/ticket/8936
* Landing pull request 332. Appending disconnected radio or checkbox inputs ↵timmywil2011-04-211-1/+15
| | | | | | | | | and keeping checked setting Fixes #8060, #8500. More Details: - https://github.com/jquery/jquery/pull/332 - http://bugs.jquery.com/ticket/8060 - http://bugs.jquery.com/ticket/8500
* Landing pull request [337](https://github.com/jquery/jquery/pull/337). Value ↵timmywil2011-04-211-2/+6
| | | | of radio inputs resets when type is set after the value in all IEs. Fixes #8570 ([bug](http://bugs.jquery.com/ticket/8570)).
* Only use getAttributeNode on buttons when setting valuetimmywil2011-04-191-1/+2
|
* Fix value attribute and val for value on button elements. Fixes #1954timmywil2011-04-171-2/+11
|
* Remove unnecessary usage of Function.prototype.bind (#7783) but maintain ↵John Resig2011-04-171-1/+4
| | | | API. Also fix bug with proxy failing when a name is provided. Fixes #8893.
* Fix live mouseenter and mouseleave binding so they can be activated by ↵Brian Brennan2011-04-171-2/+19
| | | | triggers. Fixes #6514.
* Merge branch 'qunit_fixture'timmywil2011-04-179-144/+144
|\
| * Switch QUnit div from depreceted #main to #qunit-fixturetimmywil2011-04-179-144/+144
| |
* | Make sure that hide or show don't fail when operating on non-Element nodes. ↵John Resig2011-04-171-0/+4
| | | | | | | | Fixes #6135.
* | Make sure that forms and selects are added to a jQuery set correctly. Fixes ↵John Resig2011-04-171-2/+3
|/ | | | #6912.
* Add in unit tests for #6993.John Resig2011-04-161-1/+7
|
* Merge branch 'cellpadding_support' of https://github.com/timmywil/jquery ↵John Resig2011-04-161-0/+1
|\ | | | | | | into timmywil-cellpadding_support
| * Add support for setting the cellPadding attribute in IE6/7timmywil2011-04-141-0/+1
| |
* | Backing out fix for #6481.John Resig2011-04-161-7/+2
| |
* | revert to old code, bug is invalidJordan Boesch2011-04-151-79/+0
|/
* Merge branch '8099' of https://github.com/rwldrn/jquery. Fixes #8099.jeresig2011-04-141-0/+22
|\ | | | | | | | | Conflicts: test/data/testsuite.css
| * Ticket #8099 Performance tweaking, creditsrwldrn2011-04-131-10/+10
| |
| * Ticket #8099 Updates per reviewrwldrn2011-04-131-2/+7
| |