aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit
Commit message (Collapse)AuthorAgeFilesLines
...
* Button: Add tests for button with html markupJörn Zaefferer2015-10-293-0/+11
| | | | | Ref gh-1632 Ref jquery/api.jqueryui.com#281
* Dialog: Escape closeText option before passing it to buttonJörn Zaefferer2015-10-281-1/+6
| | | | | Ref gh-1632 Fixes jquery/api.jqueryui.com#281
* Checkboxradio: Fix error tests with jQuery 1.7.0Scott González2015-10-281-10/+16
|
* Controlgroup: Add compound test suite for all jQuery versionsScott González2015-10-281-0/+26
|
* Checkboxradio: Add compound test suite for all jQuery versionsScott González2015-10-281-0/+26
|
* Controlgroup: Test cleanupScott González2015-10-273-3/+4
|
* Checkboxradio: Test cleanupScott González2015-10-275-29/+42
|
* Tests: Fix improper async sortable testLeonardo Balter2015-10-271-1/+1
| | | | | | | Caught when testing jQuery UI against the new QUnit version, where start throws an error if called with a non-numeric error. Closes gh-1630
* Draggable: Skip window bubbling test in IE 8Scott González2015-10-271-14/+20
| | | | | | | | | IE 8 implements DOM Level 2 Events which only has events propagate up to the document, not the window. Ref #10818 Ref gh-1621 Closes gh-1627
* Tabs: Handle overly-precise values in tests in IEScott González2015-10-271-1/+4
| | | | Closes gh-1628
* Selectmenu: Handle form resetsJörn Zaefferer2015-10-272-2/+20
| | | | | Fixes #12236 Ref gh-1550
* Controlgroup: Fix create and destroy for controlgroupLabelJörn Zaefferer2015-10-262-4/+13
| | | | | | Creating the label broke while doing a refactoring, the lack of tests allowed that to go unnoticed. Shouldn't happen again with the extra tests, covering both controlgroupLabel and spinner.
* Tests: Fix button space assertions on IE8Jörn Zaefferer2015-10-253-15/+15
| | | | | IE8 still doesn't keep the space in the text (or HTML) representation. We don't really care, so adding more trims in these tests as well.
* Draggable: Fix options testsJörn Zaefferer2015-10-252-12/+14
| | | | | | | | These failed when running through tests/unit/all.html, due to the smaller iframe. Reducing a browser window enough triggered the same issue. Making the top offset much smaller fixes that. The rest is fixing bad indent and adds a missing module call.
* Mouse: Don't stop propagation of mouseupHannah Methvin2015-10-181-0/+17
| | | | Fixes #10818
* Slider: Add missing unit test cases for values methodJyoti Deka2015-10-171-3/+49
| | | | Closes gh-1573
* Autocomplete: WhitespaceScott González2015-10-161-2/+2
|
* Autocomplete: Close the menu on any outside interactionsScott González2015-10-161-0/+24
| | | | | | | | | This ensures that the menu will close if the user interacts with a draggable, resizable, etc. element since those interactions don't change focus. Ref #6642 Closes gh-1614
* Checkboxradio: Add ui-state-highlight class to icon on createJörn Zaefferer2015-10-081-6/+16
| | | | | This was already toggled in _toggleClasses, but that isn't called on create.
* Controlgroup: Fix refresh method tests by adding text content to buttonJörn Zaefferer2015-10-081-2/+2
| | | | | In IE8, the empty elements cause issues. Adding text content makes sense, since empty elements are useless.
* Button: Can't test for " " in IE8, just make sure the element existsJörn Zaefferer2015-10-081-2/+2
|
* Checkboxradio: Fix label option tests by trimming DOM textJörn Zaefferer2015-10-081-10/+10
| | | | | IE8 is inconsistent in outputting space through .html() and .text() methods, but since it renders it correctly, we can just ignore it.
* Checkboxradio: Fix invalid markup in core testsJörn Zaefferer2015-10-081-1/+1
|
* Controlgroup: Fix css reference in unit testsJörn Zaefferer2015-10-081-1/+1
|
* Tests: Prevent default on anchor click to avoid navigationJörn Zaefferer2015-10-081-1/+2
|
* Controlgroup: Rename excludeInvisible to onlyVisibleJörn Zaefferer2015-10-083-9/+9
| | | | Gets rid of the double negative.
* Dialog: address review commentsAlexander Schmitz2015-10-081-4/+4
|
* Selectmenu: Address review commentsAlexander Schmitz2015-10-082-4/+2
|
* Controlgroup: Style updatesAlexander Schmitz2015-10-084-28/+28
|
* Checkboxradio: Style updatesAlexander Schmitz2015-10-085-44/+44
|
* Controlgroup: fixup for spinner and labelAlexander Schmitz2015-10-081-1/+3
|
* Controlgroup: Add missing entry to demos bootstrapAlexander Schmitz2015-10-085-93/+16
|
* Spinner: Updates for new button widget and classes optionAlexander Schmitz2015-10-088-77/+8
|
* Selectmenu: update to use button cssAlexander Schmitz2015-10-073-14/+15
| | | | This ensures consistency between different form elements
* Dialog: Updating dialog and tests for new button APIAlexander Schmitz2015-10-071-10/+8
|
* Controlgroup: Inital commit of new widgetAlexander Schmitz2015-10-077-0/+470
| | | | This widget replaces the buttonset widget
* Checkboxradio: Initial commit of new widgetAlexander Schmitz2015-10-078-0/+593
|
* Button: Initial commit of button re-factorAlexander Schmitz2015-10-079-429/+436
| | | | | | Move to using element stats rather then js class states remove ui-button-text spans. Removed button set
* Tests: Fix jshint includes for datepicker and effectsJörn Zaefferer2015-10-012-2/+2
|
* Focusable: Fix handling of `visibility: inherit`Scott González2015-09-292-3/+20
| | | | | | Ref #14596 Ref gh-1583 Closes gh-1605
* Tabs: Adjust handling of disabled option, using _setOptionDisabledJörn Zaefferer2015-09-251-1/+1
| | | | | | | | Tabs support multiple values to disable individual tabs. Only add the ui-tabs-disabled class when all tabs are disabled. Ref #9151 Closes gh-1599
* Widget: Call `._setOptionDisabled()` on init if the widget is disabledScott González2015-09-251-0/+33
| | | | | Fixes #9151 Ref gh-1599
* Core: Remove ancestor visibility requirement from `:focusable` selectorWeston Ruter2015-09-242-2/+13
| | | | | | | | * Check computed visibility in addition to :visible * Add tests for nested visibility override Fixes #14596 Closes gh-1583
* All: Delegate to base `_getCreateOptions()`.Scott González2015-09-171-1/+4
| | | | | | | Ensures that any extensions to the base widget will be handled properly by individual widgets. Closes gh-1598
* Datepicker: Fix tests on TestSwarm by requiring $.ui.ie in the testJörn Zaefferer2015-09-171-1/+2
| | | | | The check that checks for IE wouldn't match since $.ui.ie was extracted to its own file.
* Build: Style updatesAlexander Schmitz2015-09-111-1/+1
| | | | Ref #14246
* FormRestMixin: Style updatesAlexander Schmitz2015-09-111-4/+4
| | | | Ref #14246
* Position: Style updatesAlexander Schmitz2015-09-111-141/+141
| | | | Ref #14246
* Effects: Style updatesAlexander Schmitz2015-09-112-71/+71
| | | | Ref #14246
* Widget: Style updatesAlexander Schmitz2015-09-114-298/+305
| | | | Ref #14246