aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into selectmenuJörn Zaefferer2011-11-2424-37/+38
|\
| * Autocomplete: Removed commented out test.Scott González2011-11-231-18/+0
| |
| * Autocomplete: Making sure we do not show search menu after a blur. Fixed ↵Shannon2011-11-231-0/+19
| | | | | | | | #7423 - Tab out of autocomplete with remote source can leave menu showing.
| * Upgrade jQuery to 1.7.1.Scott González2011-11-2222-22/+22
| |
| * Widget tests: Fixed _super() call in redefine test.Scott González2011-11-211-1/+1
| |
* | Selectmenu: added basic method unit testsFelix Nagel2011-11-223-7/+89
| |
* | Selectmenu: added state synchronization unit testFelix Nagel2011-11-211-7/+41
| |
* | Selectmenu: remove markup unit testFelix Nagel2011-11-211-17/+0
| |
* | Merge branch 'master' into selectmenuJörn Zaefferer2011-11-1855-233/+427
|\|
| * Widget: Remove method argument from _super and _superApply. Was a left-over ↵Jörn Zaefferer2011-11-181-5/+5
| | | | | | | | from first implementation, not necessary anymore.
| * Spinner: Handle changes to numberFormat and currency options.Scott González2011-11-161-0/+19
| |
| * Effects tests: Proper detection of fixed position support in jQuery 1.7.Scott González2011-11-091-2/+7
| |
| * Upgrade jQuery to 1.7.Scott González2011-11-0922-22/+22
| |
| * Tests: Change the input in the effects test to a text input. This fixes ↵kborchers2011-11-021-1/+1
| | | | | | | | failing tests in IE8 that could not focus the input.
| * Tabs test: Increase delay in load test.Scott González2011-11-021-2/+2
| |
| * Position tests: Changed DOM structure to fix dimensions of within container.Scott González2011-11-021-4/+4
| |
| * Autocomplete tests: Fixed typo.Scott González2011-11-011-1/+1
| |
| * Tests (Simulate): Added focus and blur support.Scott González2011-10-312-7/+5
| |
| * Tests: Added ability to run tests against minified files via ?min=1Scott González2011-10-2823-128/+263
| |
| * Effects Core: Do not overwrite css or class changes that aren't animated ↵ddstreet2011-10-252-59/+87
| | | | | | | | during class animation. Fixed #7106 - animateClass: css and class changes during animation are lost
| * Menu: Added the new trigger option to the defaults unit testkborchers2011-10-191-0/+1
| |
| * Upgraded jQuery to 1.6.4.Scott González2011-10-1822-22/+22
| |
| * Scale: We can't detect this reliably currently, so assume all elements are ↵Corey Frang2011-10-141-0/+2
| | | | | | | | positioned with left and top
| * Autocomplete tests: Fix #7788, incorrect selector in autoFocus test.Dave Methvin2011-10-131-1/+1
| | | | | | | | jQuery 1.7 fixed a bug with positional selectors that exposed the incorrect use of `.children()` here.
| * Tooltip tests: Adjust test to deal with blurring being async in IE.Scott González2011-10-121-1/+3
| |
| * Tabs: Force ajax tabs to resolve asynchronously to avoid a bug caused by ↵Scott González2011-10-101-1/+2
| | | | | | | | cached XHRs resolving immediately in IE.
| * Spinner: Simulate keyup at the end of incremental tests to stop the repeat ↵Scott González2011-10-101-0/+3
| | | | | | | | timer.
* | Selectmenu: added basic markup and a11y unit testsFelix Nagel2011-11-022-4/+42
| |
* | Selectmenu: fixed initial unit test by adding create callback to ↵Felix Nagel2011-11-021-1/+2
| | | | | | | | selectmenu_defaults.js
* | Selectmenu: Add placeholder for unit testsJörn Zaefferer2011-10-197-0/+145
|/
* Spinner: Added culture option.Scott González2011-09-283-0/+27
|
* Effects tests: Ignore leading/trailing whitespace when comparing style ↵Scott González2011-09-281-2/+2
| | | | properties.
* Tooltip: Fixed defaults in tests.Scott González2011-09-281-1/+1
|
* Menu: Refactoring the collapseAll to deal with some issues selecting - ↵Corey Frang2011-09-222-2/+8
| | | | Updating unit tests. Thanks @kborchers
* Merge remote branch 'kborchers/menu_notJustUL'Jörn Zaefferer2011-09-194-2/+98
|\
| * Menu: Add support for structures other than UL/LI plus visual and unit testskborchers2011-09-144-2/+98
| |
* | Spinner: Fix step mismatches whenever stepping, paging or using the value ↵Scott González2011-09-143-20/+22
|/ | | | | | setter. Thanks Nate Ferrero
* Merge remote branch 'kborchers/menu_autoCollapse'Jörn Zaefferer2011-09-121-0/+19
|\
| * Menu: Added autoCollapse as the default and added a unit testkborchers2011-09-121-0/+19
| |
* | Widget: return timer value from _delayJörn Zaefferer2011-09-121-3/+5
| |
* | Widget: Add a _delay method. Will be used in various places to replace ↵Jörn Zaefferer2011-09-121-0/+24
| | | | | | | | setTimeout with custom binding (mostly getting rid of var self/that)
* | Widget: Tests code cleanupJörn Zaefferer2011-09-122-20/+19
| |
* | Spinner: Added ability to specify custom incremental function.Scott González2011-09-091-38/+65
| |
* | Spinner: Default min and max options to null.Scott González2011-09-092-9/+15
| |
* | Autocomplete: Fixed setting of valueMethod for textareas. Fixes #7674 - ↵Scott González2011-08-302-104/+70
| | | | | | | | Autocomplete doesn't work with textareas.
* | Dialog: Update to 96e5c24 - keyup apparently doesn't work like I thought it ↵Corey Frang2011-08-201-1/+1
| | | | | | | | would everywhere, switching back to keydown.
* | Position: Added the missing div required for the fraction tests that were ↵kborchers2011-08-191-0/+4
| | | | | | | | added to fix the broken test
* | Dialog: Tabbing out of a modal dialog was possible because keypress doesn't ↵Corey Frang2011-08-191-1/+30
| | | | | | | | fire for tabs everywhere, switched to keyup. Added Unit Test - Caught by @DomenicDenicola - Fixes #3123 - Tabbing stops in modal dialog
* | Merge remote branch 'kborchers/position_flipfit2'Jörn Zaefferer2011-08-153-128/+151
|\ \
| * | Position: Added better collision detection for flip and fit, added visual ↵kborchers2011-08-123-128/+151
| | | | | | | | | | | | tests for each and updated the unit tests to take the changes into account. In the process, I removed the rounding that was being done to the position since older jQuery couldn't handle the fractions. There was another pull for this same issue and I have merged the unit tests from that pull into this commit. Also added flipfit!