aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Remove noCloneEvent detects and white-box unit test.Dave Methvin2013-01-031-42/+0
|
* Remove deleteExpando detect.Dave Methvin2013-01-031-34/+0
|
* Remove inlineBlockNeedsLayout and shrinkWrapBlocks.Dave Methvin2013-01-031-61/+32
|
* Remove stranded support.js checks for oldIE.Dave Methvin2013-01-031-41/+1
|
* Revert data.js rewrite.Dave Methvin2013-01-032-97/+59
| | | | | | | | | | | | | | | | | | | | | | Reverts the following commits: commit f717226b3a44f918eec30b2d59ab257270189bc3 Author: Rick Waldron <waldron.rick@gmail.com> Date: Mon Dec 31 18:06:38 2012 -0500 Only splice from internal arrays when item actually exists. commit b9cdc4136b688963d1dc4befb169be02a0216ba9 Author: Rick Waldron <waldron.rick@gmail.com> Date: Mon Dec 31 16:20:35 2012 -0500 Updates to data.js re-write to pass events and manipulation commit d1de3000c6d50c298de14fb1ae3381d75c303723 Author: Rick Waldron <waldron.rick@gmail.com> Date: Mon Dec 31 15:09:45 2012 -0500 2.0: Rewrite data.js
* 2.0: Rewrite data.jsRick Waldron2012-12-312-59/+97
| | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Remove invalid test "jQuery.getJSON() - Using Native JSON" from ↵Rick Waldron2012-12-311-31/+12
| | | | | | test/unit/ajax.js Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
* Merge branch '2.0-manipulation' of https://github.com/orkel/jqueryRick Waldron2012-12-311-11/+32
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '2.0-manipulation' of https://github.com/orkel/jquery: (51 commits) Rename fixCloneNodeIssues helper to fixInput Move support comment Add tests for th element Add empty line Add more tests for wrapMap Add test for td append wrapMap.col = wrapMap.tr wrapMap.thead = wrapMap.tr Add support comments Rewrite tests for colgroup, caption Add tests for thead, tbody, tfoot Remove fix for #11280 Remove fieldset from wrapMap Add comments for optgroup and option elements in wrapMap Add tests for optgroup element Remove fix for #4484, add more tests Use tabs instead of spaces Simplify getAll helper Simplify check for non-Elements Remove fix for object element Save 43 bytes Use common loop iteration idiom Remove fix for #9587 Use correct comments ...
| * Add tests for th elementOleg2012-12-281-2/+2
| |
| * Add more tests for wrapMapOleg2012-12-281-1/+2
| |
| * Add test for td appendOleg2012-12-281-2/+2
| |
| * wrapMap.thead = wrapMap.trOleg2012-12-281-2/+2
| | | | | | | | Add support comments
| * Rewrite tests for colgroup, captionOleg2012-12-281-7/+8
| | | | | | | | Add tests for thead, tbody, tfoot
| * Add comments for optgroup and option elements in wrapMapOleg2012-12-281-1/+5
| | | | | | | | Add tests for optgroup element
| * Remove fix for #4484, add more testsOleg2012-12-281-2/+7
| |
| * Use tabs instead of spacesOleg2012-12-241-1/+1
| |
| * Use tabs instead of spacesOleg2012-12-241-4/+4
| | | | | | | | "$" => "jQuery"
| * Add additional testOleg2012-12-241-0/+9
| |
| * Add additional testOleg2012-12-241-0/+1
| |
* | Merge branch '2.0-attributes-rebased'Rick Waldron2012-12-312-325/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | * 2.0-attributes-rebased: 2.0: Remove getSetAttribute and getSetInput and oldIE attroperties hooks Resolved conflict 2.0: Remove style->cssText attroproties fallback Remove outdated support tests 2.0: Remove support.optSelected 2.0: Remove oldIE enctype propFix
| * | 2.0: Remove style->cssText attroproties fallbackTimmy Willison2012-12-311-4/+0
| | |
| * | Remove outdated support testsTimmy Willison2012-12-311-321/+0
| | |
* | | Merge branch '2.0-traversing' of https://github.com/orkel/jqueryRick Waldron2012-12-311-2/+7
|\ \ \ | |/ / |/| | | | | | | | | | | * '2.0-traversing' of https://github.com/orkel/jquery: Code style Reduce traversing module
| * | Reduce traversing moduleOleg2012-12-191-2/+7
| | |
* | | Fixes #13088: under IE8, $(selector).attr('style') always return lowercase ↵Mike Sherov2012-12-311-2/+5
| |/ |/| | | | | string
* | Fix #13075. Optimize $.type by preferring `typeof`. Close gh-1089.Sebi Burkhard2012-12-231-1/+11
| | | | | | | | Also fixes browsers where `typeof RegExp === "function"`.
* | Know when to hold em, know when to fold em.Dave Methvin2012-12-221-7/+12
| |
* | Do not perform support check for old Opera. Close gh-1097.Oleg2012-12-201-1/+1
| |
* | Fix #12569. Improve feature detect for event bubbling. Close gh-1076.Oleg2012-12-203-12/+142
| |
* | Fix #13094. Pass index to .before(fn) fn as documented. Close gh-1093.Oleg2012-12-201-0/+8
|/
* Remove .live() tests now in Migrate plugin.Dave Methvin2012-12-181-578/+25
|
* Fix #13064: better test fixture cleanup. Close gh-1075.Richard Gibson2012-12-161-2/+2
|
* let .attr(checked|selected, true) update the propertyRichard Gibson2012-12-161-2/+9
|
* Resolve a763ae72 test failuresRichard Gibson2012-12-151-4/+1
|
* Fix #11115: Normalize boolean attributes/properties. Close gh-1066.Richard Gibson2012-12-153-61/+65
|
* Fix #12600: don't use value property in place of value attribute. Close gh-1063.Richard Gibson2012-12-142-11/+26
|
* Adjust html parsing in event tests to use jQuery.parseHTML explicitly.Timmy Willison2012-12-131-3/+3
|
* Adjust jQuery('html') detection to only match when html starts with '<' (not ↵timmywil2012-12-133-10/+18
| | | | counting space characters). Fixes #11290.
* Ref #8908, gh-886. Avoid clone identity crisis in IE9/10. Close gh-1036.Oleg2012-12-132-67/+77
|
* Fix #13044: execute all QUnit modules in TestSwarm. Close gh-1074.Richard Gibson2012-12-131-1/+1
|
* Fix #9646. Cloned nodes shouldn't affect original in IE7. Close gh-947.Oleg2012-12-131-0/+24
|
* Fix #11230. .appendTo and pals should always stack.Dave Methvin2012-12-131-5/+5
|
* Missed a var declaration in aad235b3251494afe71fd5bb6031e11965af9bdb.Dave Methvin2012-12-111-1/+1
|
* Fix #4087. insertAfter, insertBefore, etc do not work if origin and ↵Paul Ramos2012-12-111-0/+34
| | | | destination are same element. Close gh-1068.
* Fix #13011. Let 'type' attribute be set if the browser allows.Dave Methvin2012-12-111-9/+5
|
* Fix #12990. Don't add 'px' to column-count. Close gh-1050.Bennett Sorbo2012-12-111-4/+13
|
* Fix #12956. Improve cloneFixAttributes for IE9/10 case. Close gh-1034.Oleg2012-12-111-0/+49
| | | | Remove clear(merge)Attributes hack
* Fix IE failures from 55313d32Richard Gibson2012-12-111-17/+16
|
* Fixes #11938: Adding array getter method to jQuery.fn.cssMike Sherov2012-12-111-0/+16
|
* Test: Update index.html to new QUnit format. Close gh-1061.Timo Tijhof2012-12-108-42/+40
| | | | Depends on jquery/sizzle#177, included with the Sizzle submodule in this commit.