aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Menu tests: Removed trigger option.Scott González2012-01-181-2/+1
|
* Simulate: Define getters for pageX and pageY in mouse events if they come ↵Scott González2012-01-121-1/+25
| | | | through as 0. Fixes #7324 - simulate mouse events broken for IE 9.
* Spinner: Allow strings for min, max, and step options, converting ↵Scott González2012-01-071-2/+48
| | | | immediately to numbers based on numberFormat and culture.
* Menu: Fix close delay and increase the default delaykborchers2011-12-201-17/+23
|
* Merge pull request #553 from AlbertoMonteiro/masterScott González2011-12-151-0/+9
|\ | | | | Dialog: When destroy is called place the element back in original DOM position. Fixed #4980 - Dialog: Destroy should place element back in original DOM position
| * Dialog: When destroy is called place the element back in original DOM ↵Alberto Monteiro2011-12-151-0/+9
| | | | | | | | position. Fixed #4980 - Dialog: Destroy should place element back in original DOM position
* | Menu: Fix focus handling to keep focus on the menu and prevent jumping ↵kborchers2011-12-152-3/+6
|/ | | | around within the menu on mousedown
* Menu: Update the default visual test to use the new menus option that ↵kborchers2011-12-071-2/+2
| | | | replaced the items option
* Dialog: Modified the dialog._size() to use outerHeight in calculating the ↵James Khoury2011-11-281-4/+9
| | | | nonContentHeight. Fixed #7692 - dialog: dialog height bug is incorrect when .ui-dialog padding set.
* Autocomplete: Don't invoke a search from arrow keys when the element can ↵meh-cfl2011-11-281-0/+86
| | | | have multi-line text. Fixes #7639 - Key up/key down in textarea's should optionally not toggle auto-complete.
* 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-2271-70/+9336
|
* Widget tests: Fixed _super() call in redefine test.Scott González2011-11-211-1/+1
|
* 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-0971-70/+9370
|
* Simulate: fixed charCode to be undefined unless specified. Fixed #3229 - ↵Richard D. Worth2011-11-071-1/+1
| | | | Safari: jQuery.simulate() doesn't set "which" field for key events
* Tests: Removed unnecessary visual tests for button.Scott González2011-11-032-109/+0
|
* Tests: Removed visual tests for plugins that are being rewritten.Scott González2011-11-0351-2956/+0
|
* 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
|
* Tests (Simulate): Make the blur event async to deal with IE's native blur ↵Scott González2011-11-011-11/+16
| | | | being async.
* Autocomplete tests: Fixed typo.Scott González2011-11-011-1/+1
|
* Tests (Simulate): Added focus and blur support.Scott González2011-10-313-7/+54
|
* Tests (Simulate): Whitespace cleanup.Scott González2011-10-311-70/+99
|
* Tests: Added ability to run tests against minified files via ?min=1Scott González2011-10-2824-128/+302
|
* 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
|
* Menu: Update visual test to remove bottom scroll bar in scrolling menus in ↵kborchers2011-10-181-1/+1
| | | | IE6 and IE7
* Upgraded jQuery to 1.6.4.Scott González2011-10-18122-120/+18210
|
* 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.
* 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-195-4/+198
|\
| * Menu: Add support for structures other than UL/LI plus visual and unit testskborchers2011-09-145-4/+198
| |
* | Spinner: Fix step mismatches whenever stepping, paging or using the value ↵Scott González2011-09-143-20/+22
|/ | | | | | setter. Thanks Nate Ferrero
* Menu: Refactor to get rid of var that. Cleanup some odd formattings and ↵Jörn Zaefferer2011-09-131-6/+6
| | | | unneeded temp vars
* 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)