aboutsummaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Draggable Tests: Fix inconsistent operator spacing.Mike Sherov2014-08-061-4/+4
|
* Tooltip: Treat the tooltip as closing until it's fully removedScott González2014-08-061-0/+20
| | | | | | | This ensures that we don't trigger the close event twice if the tooltip is destroyed during the hide animation. Closes gh-1306
* Resizable: account for padding & border in grids.Mike Sherov2014-08-051-0/+20
| | | | Fixes #10437
* Resizable: Fix containment width with relative parent.Jyoti Deka2014-08-041-10/+48
| | | | Refs #10140 Closes gh-1303
* Resizable: Fix containment calculation with relative parentMike Sherov2014-08-041-1/+15
| | | | | | | Remove an incorrect fix introduced in 47cd5b6f that causes width calculations to be incorrect once the correct fix was introduced in c03cb807 Fixes #10140
* Tests: WhitespaceScott González2014-08-011-23/+23
|
* Tests: Fix composite testsScott González2014-08-0123-24/+24
|
* Core: Ensure forms in tests have some actual contentScott González2014-07-301-2/+7
| | | | | Empty forms have no height, so they're considered hidden in jquery-git as of jquery/jquery@10399ddcf8a239acc27bdec9231b996b178224d3
* Core: Clean up selector testsScott González2014-07-301-169/+172
|
* Selectmenu: Remove unused var in testScott González2014-07-291-1/+1
|
* Selectmenu: Don't check menu width in width option testsScott González2014-07-291-13/+1
|
* Selectmenu: Properly set width for buttonScott González2014-07-291-2/+10
| | | | | Fixes #10145 Closes gh-1296
* Autocomplete: ESCAPE should not change content of a MultiLineYermo Lamers2014-07-241-0/+28
| | | | | Fixes #9790 Closes gh-1190
* Resizable: Fix size/position changes in resize eventScott González2014-07-241-0/+21
| | | | | Fixes #10351 Closes gh-1292
* Draggable: Manage ui-draggable-handle correctly in nested instancesTJ VanToll2014-07-151-0/+13
|
* Draggable: Only apply ui-draggable-handle within the draggable instanceTJ VanToll2014-07-151-2/+6
| | | | | Fixes #10212 Closes gh-1284
* Datepicker: reject dates with two year digits when expecting 'yy'Rodrigo Menezes2014-07-141-1/+3
| | | | | Fixes #8353 Closes gh-1248
* Slider: Reset positioning when orientation changesScott González2014-07-021-1/+3
| | | | | Fixes #10105 Closes gh-1268
* Tests: Use closeEnough() to account for rounding differencesTJ VanToll2014-06-251-1/+1
| | | | | | | | | Selectmenu's test suite broke with b0e8380, which changed the padding used by the menu widget. Selectmenu conditionally adds pixels to the menu's width, and using closeEnough() accounts for that and the rounding differences across browsers. Closes gh-1275
* Test: Get all jQuery versions from BowerScott González2014-06-2422-194094/+1
| | | | Ref gh-1266
* Build: Reorganize external directoryScott González2014-06-2475-121/+121
| | | | | | | Put each external library into its own directory. Move jquery.js to external. Ref gh-1266
* Dialog: Honor preventDefault when managing focusJörn Zaefferer2014-06-101-2/+25
| | | | | | | | If event.isDefaultPrevented() is true, the focus management is completely skipped, assuming the user manages focus manually. Fixes #10103 Closes gh-1265
* Dialog: Fix shift-tab handling, focus the correct elementJörn Zaefferer2014-06-101-7/+9
| | | | | | | | | | | Copy-paste error introduced in df6110c0d424ff3306fdd5576011f2dcf4d242d0 Updates the tabbing test to be more specific about which element should have focus, instead of only checking if focus is within the dialog. Ref #9646 Ref #10103 Closes gh-1264
* Spinner: Don't change value when changing min/max optionsDavid Petersen2014-05-261-3/+3
| | | | | Fixes #9703 Closes gh-1252
* Tabs: Move `aria-expanded` from active panel to active tabDavid Petersen2014-05-191-63/+63
| | | | | Fixes #9622 Closes gh-1251
* Autocomplete: Search if the user retypes the same valueTJ VanToll2014-05-121-0/+21
| | | | | Fixes #7434 Closes gh-1238
* Menu: Use item.outerHeight() in _scrollIntoViewJörn Zaefferer2014-05-061-1/+1
| | | | Fixes #9991
* Selectmenu: Work around test bug in IEScott González2014-04-241-1/+1
|
* Spinner tests: Remove mousewheel pluginJörn Zaefferer2014-04-231-1/+0
| | | | | | | | The plugin isn't needed nor used in the unit tests, which just trigger the appropriate events. This works around the failure in Firefox 27/28 that we'll try to track down separately. Ref #9988
* Selectmenu: Test cleanupScott González2014-04-221-19/+33
|
* Selectmenu: Test cleanupScott González2014-04-222-49/+47
|
* Selectmenu: Test cleanupScott González2014-04-221-45/+47
|
* Selectmenu: Test cleanupScott González2014-04-211-50/+61
|
* Selectmenu: Default disabled option to nullScott González2014-04-211-2/+2
|
* Selectmenu: Fix reference to jQuery in testsScott González2014-04-211-1/+1
|
* Button: WhitespaceScott González2014-04-211-7/+7
|
* Button: Remove `ui-state-active` when disabling buttonsDaniel DeGroff2014-04-211-0/+35
| | | | | Fixes #9602 Closes gh-1151
* Selectmenu: Remove unused varScott González2014-04-181-1/+1
|
* Selectmenu: Don't use active items at allScott González2014-04-181-15/+11
| | | | | | | Menus only use active items for nested menus which selectmenu doesn't support. Selectmenu should only be working with focused items. Ref gh-1224
* Resizable: Remove bad workaround for draggable+resizableJörn Zaefferer2014-04-163-4/+58
| | | | | | | | | | | | This adds a compound test page for draggable+resizable, which had no coverage before. Using that page shows that there is no way to reproduce the behaviour described in the original ticket that caused this workaround, since its not possible to resize an element beyond the window boundaries. Therefore removing the workaround, which is 6+ years old and has no test coverage, seems like the sanest approach. Fixes #6939 Closes gh-1210
* Button: Properly refresh button sets with new radio buttonsScott González2014-04-012-0/+27
| | | | | Fixes #8975 Ref gh-888
* Spinner: Minor typo in stepUp()'s testsTJ VanToll2014-03-301-1/+1
|
* All: Rename jquery.js to exclude version in filenameJörn Zaefferer2014-03-0551-51/+51
|
* Tests: Expose jQuery version selectJörn Zaefferer2014-03-041-0/+11
| | | | Makes use of the extended urlConfig in QUnit 1.14
* Core: Deprecate .focus( n ), replace in dialog with explicit timeoutsJörn Zaefferer2014-02-212-28/+28
| | | | Fixes #9646
* Selectmenu: Fix invalid empty options in visual testJörn Zaefferer2014-02-211-3/+3
|
* Selectmenu: Fix whitespace in visual testJörn Zaefferer2014-02-211-8/+8
|
* Selectmenu: Refactor appendTo option testsJörn Zaefferer2014-02-211-16/+27
|
* Selectmenu: Fall back to .ui-front searching for empty jQuery objectsJörn Zaefferer2014-02-211-1/+6
| | | | Fixes #9757
* Autocomplete: Fix assertion message in appendTo option testJörn Zaefferer2014-02-211-1/+1
|