aboutsummaryrefslogtreecommitdiffstats
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Fix weird clone bug and add a unit test to verifyElijah Manor2012-08-081-0/+36
|
* Fix a regression where has with multiple contexts was not filtering ↵Timmy Willison2012-07-271-2/+5
| | | | correctly. Test added.
* Adding a check for double progress call in effects unitsCorey Frang2012-07-251-0/+4
|
* Fix #12127, fer real. IE9/10 check state on clone. Close gh-875.Daniel Chatfield2012-07-251-0/+12
|
* Pull in unit tests from gh-877, thanks @orkel!Dave Methvin2012-07-251-5/+10
|
* Give .stop() queue animations more leeway for Stutterin' Swarmy.Dave Methvin2012-07-251-2/+2
| | | | This test sometimes fails with only 2 animations left in the queue, so this extends the first animation in case we're running afoul of the one-second rule for background windows.
* Fix #12148. Let .toggle() call the public .hide() for punching.Dave Methvin2012-07-251-1/+12
| | | | There is a slightly shorter way to do this but it's not Closure-friendly.
* This should repair the unitCorey Frang2012-07-251-23/+21
|
* Trying to repair a unitCorey Frang2012-07-251-19/+23
|
* Fail silently if closest is somehow called on a document. Fixes #10726.Timmy Willison2012-07-251-1/+4
|
* Remove IE8 testswarm hacks for offset.Dave Methvin2012-07-251-20/+9
|
* Revert "Fix #12127. IE9/10 checks fall off the box on clone. Close gh-873."Dave Methvin2012-07-251-11/+0
| | | | | | This reverts commit 569d064fc93459695cb6eb6fd09e5ba3fda62f03. Causing test fails in Safari, IE6, and IE7.
* Loosen the ajax statusText check so Safari AND Chrome pass.Dave Methvin2012-07-251-1/+1
|
* Fix #7579. Don't convert to number if it changes the string. Close gh-852.Dave Methvin2012-07-251-3/+7
| | | | Net effect here is that hex numbers and most exponential-format numbers or long sequences of digits will remain strings rather than being coerced to numbers. `The people have spoken.
* Fix #12127. IE9/10 checks fall off the box on clone. Close gh-873.Daniel Chatfield2012-07-251-0/+11
|
* Sizzle: fix issue with adjusting the context on relative combinators in ↵Timmy Willison2012-07-231-1/+1
| | | | element-rooted qSA
* Support event delegation with relative selectors. Fixes #10762. Closes gh-860.Richard Gibson2012-07-231-7/+10
|
* Fix #12088, Safari 5 and more percentages in getComputedStyleMike Sherov2012-07-222-7/+9
| | | | In particular, min-width and max-width are taunting the awesome hack. Closes gh-865.
* Really support subproject tests in testswarm, closes gh-868Richard Gibson2012-07-221-61/+107
|
* Fix the logic to set overflow:hidden on width & height animations - Fixes ↵Corey Frang2012-07-201-0/+14
| | | | #12117 - Closes gh-869
* Let subproject tests use their own test fixture. Closes gh-867.Dave Methvin2012-07-192-2/+79
|
* Extracts the serialization code from the ajax module so that alternative ↵jaubourg2012-07-133-132/+146
| | | | ajax implementations can use it without the need for the whole ajax module to be included in the build.
* Image location is relative to css file, not html file.Dave Methvin2012-07-121-1/+1
|
* Update to QUnit 1.9.0Dave Methvin2012-07-121-0/+0
|
* Followup on #10791: "[class~=foo]" is better. Closes gh-858.Richard Gibson2012-07-121-2/+2
|
* Fix #11547. toLowerCase not work good on XML attributes.Dave Methvin2012-07-112-15/+27
| | | | This was fixed to some extent in gh-724 but there were insufficient test cases. Removing the lowercase completely allows IE 6/7 to work properly since there you need an exact case match for attributes, even in HTML docs. More discussion and test cases in the comments on gh-724.
* Wontfix #10791: please use "[class=foo]" with SVG elementsRichard Gibson2012-07-111-2/+2
|
* Remove a few stray spaces in unit tests.Dave Methvin2012-07-102-3/+3
|
* You can't hurry tests, no, you just have to wait.Dave Methvin2012-07-101-2/+2
| | | | The 100ms here is just too fast and flakey, it causes random fails in swarmy runs.
* Fix #10517. before() and after() on disconnected node should return multiple ↵Uri Gilad2012-07-101-0/+7
| | | | nodes. Closes gh-851.
* Fix #11962. Standardize getter return values for empty sets.Uri Gilad2012-07-092-0/+11
|
* Fix #11971 unit test in browsers lacking backgroundPositionX.Richard Gibson2012-07-091-0/+7
| | | | Closes gh-850.
* Fix #12018, readyState "interactive" in oldIE lies! Closes gh-848.Mike Sherov2012-07-066-30/+72
|
* Fix #8482, offsetParent should not return null. Closes gh-847.Nowres Rafid2012-07-062-1/+7
|
* Fix #11971: force numeric animation start to be numeric, closes gh-836.Richard Gibson2012-07-052-4/+40
|
* Fix #12026. Let props in $(html, props) be any jQuery.fn method.Dave Methvin2012-07-051-4/+12
| | | | Closes gh-839.
* Make unit tests friendly to Closure Compiler. Closes gh-845.Chad Killingsworth2012-07-0514-576/+587
| | | | | | Conflicts: test/unit/effects.js test/unit/offset.js
* Ever notice that static and problematic rhyme?Dave Methvin2012-07-031-3/+8
|
* Avoid running problematic static offset tests in IE8 on the swarm.Dave Methvin2012-07-031-5/+10
|
* UPDATE SIZZLE: completed rewrite for better things!timmywil2012-07-024-11/+26
| | | | Remove reverse in traversing for comma selectors. Sizzle's handling of commas is now more consistent.
* Move jQuery.sub to deprecated.js, because it is.Dave Methvin2012-06-291-0/+4
|
* Fix #11382. #11764. Only prevent click events on disabled elements.Dave Methvin2012-06-271-5/+14
| | | | | | We don't want a disabled link/button to register delegated clicks, but we do want events like mouseover or custom events. This is a compromise, there is no perfect solution. Well, the browsers could be consistent about direct vs. delegated events but *that's* not gonna happen.
* Fix #11315. Selector for .on() is relative to delegateTarget.Dave Methvin2012-06-271-0/+14
| | | | This fixes a regresssion from 1.6.4. Be aware that nearly every place that this bug comes into play, the selector in use is incredibly inefficient.
* Update Sizzle: reduced size. Add Sizzle's utilities.js to unit teststimmywil2012-06-271-0/+1
|
* Fix #11969. Never a null moment when checking siblings.Dave Methvin2012-06-261-1/+2
|
* Adds .jshintrc files for: grunt (default set), src, tests; Adapts jQuery-UI ↵Rick Waldron2012-06-251-0/+56
| | | | loading method
* Completes #11799: Maybe .progress() was cooler than I thought.Corey Frang2012-06-251-5/+17
| | | | Generate a .progress() for each step of an animation, once all properties are changed. Closes gh-835.
* Adds src/deprecated.js, test/unit/deprecated.js; -deprecated flag; Moves ↵Rick Waldron2012-06-255-37/+49
| | | | jQuery.browser and removes use in test/unit/ajax.js. Fixes #11965
* Make removeClass smart enough to remove duplicates. Fixes #11923Rick Waldron2012-06-231-0/+10
|
* Add a semicolon in unit test; this pull predated lint mandate.Dave Methvin2012-06-221-1/+1
|