aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual
Commit message (Collapse)AuthorAgeFilesLines
* All: Remove deprecated .click() usage in demos/testsMichał Gołębiowski-Owczarek2022-07-141-1/+1
|
* Build: Update to the latest version of Grunt & many other packagesMicah Miller2020-10-143-4/+4
| | | | | | | | JSHint, JSCS & QUnit-related packages are not updated as they need more code adjustments. Fixes #15112 Closes gh-1882
* All: Remove usage of jQuery positional selectorsMichał Gołębiowski-Owczarek2020-01-223-6/+6
| | | | | | | | | | | | | | | | | jQuery positional selectors () have been deprecated in [jQuery 3.4.0](https://blog.jquery.com/2019/04/10/jquery-3-4-0-released/) and they'll be removed in jQuery 4.0.0. This PR removes their usage. Most of the changes were possible without changing public API. However, dropping `:even` usage required a change to the [`header` option](https://api.jqueryui.com/accordion/#option-header) of the accordion widget. I made it an optional function; this will need to be documented. The polyfill for `.even()` & `.odd()` is added for jQuery <3.5.0. There was no usage of the :odd selector in the code but the `.odd()` method is also polyfilled for completeness. Closes gh-1904
* All: Migrate away from deprecated/removed Core APIsMichał Gołębiowski-Owczarek2019-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary of the changes: * Build: Add jQuery 3.2.0-3.4.1 to versions UI can be tested against * Build: Load jQuery & Migrate via HTTPS * Build: Add package-lock.json to .gitignore * Build: Update jQuery Migrate from 3.0.0 to 3.1.0 * Build: Allow to run tests against jQuery 3.x-git * Build: Fix formatting according to JSCS rules * Build: Disable JSCS for the inlined jQuery Color * All: Switch from $.isArray to Array.isArray (jQuery.isArray will be removed in jQuery 4.0) * All: Switch from `$.isFunction( x )` to `typeof x === "function"` (jQuery.isFunction will be removed in jQuery 4.0) * All: Inline jQuery.isWindow as it'll be removed in jQuery 4.0 * Effects: Fix a timing issue in a variable declaration. Previously, a jQuery object was created, chained & assigned to a variable that was then accessed in a callback used inside of this chained definition. Due to a timing difference in when the callback fired for the first time in latest jQuery master, it was being called before the variable was defined. * Tests: Make dialog & draggable unit tests less strict (newest jQuery returns fractional results in some cases, making comparisons fail when there's a tiny difference) * All: Migrate from $.trim to bare String.prototype.trim (jQuery.trim will be deprecated in jQuery 3.5) Closes gh-1901
* All: Optimize png images losslessly using zopflipngPeter Dave Hello2016-06-061-0/+0
| | | | Closes gh-1710
* Tests: Removed links to tests that no longer existPeter Kehl2016-05-311-6/+0
| | | | Closes gh-1709
* Dialog: Remove use of `$.now()` in performance testScott González2016-03-031-4/+4
|
* Tooltip: Remove use of `$.parseJSON()`Scott González2016-01-181-2/+3
| | | | | | | Also fixes the module loading for the tooltip animations visual test. Fixes #14903 Closes gh-1665
* Checkboxradio: Address review commentsAlexander Schmitz2015-10-081-1/+1
|
* Button: address review commentsAlexander Schmitz2015-10-082-88/+0
|
* Checkboxradio: Initial commit of new widgetAlexander Schmitz2015-10-072-0/+70
|
* Button: Initial commit of button re-factorAlexander Schmitz2015-10-071-25/+3
| | | | | | Move to using element stats rather then js class states remove ui-button-text spans. Removed button set
* Tests: Use demo bootstrap for visual testsJörn Zaefferer2015-09-3033-475/+227
| | | | | | Adds a data-composite option and fixes paths for effects. Otherwise just applies the same conversion as already applied to demos, sometimes moving a <style> element to the right place.
* Effects: Style updatesAlexander Schmitz2015-09-111-17/+18
| | | | Ref #14246
* Tooltip: Style updatesAlexander Schmitz2015-08-211-5/+5
| | | | | Ref #14246 Ref gh-1588
* Position: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-202-4/+4
|
* Effects: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-204-16/+16
|
* Tooltip: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-2/+2
|
* Selectmenu: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-9/+9
|
* Draggable: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-1/+1
|
* Dialog: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-205-9/+9
|
* Tests: Add slider visual test to the index pageTJ VanToll2015-04-051-0/+5
|
* Slider: Fix handle order when setting values of range slider to maxAblay Keldibek2015-03-181-0/+47
| | | | | | | When both values are set to the maximum change them in descending order Fixes #9046 Closes gh-1502
* Tooltip: Add classes optionAlexander Schmitz2015-03-111-3/+9
| | | | | Ref #7053 Ref gh-1411
* Effects: RewriteMike Sherov2014-12-105-2/+6
| | | | | | | | | | | | | | | | | | 1. Introduces a set of helper methods to easily create and define new effects. 2. Uses clip animations and placeholders instead of wrappers for clip effects. 3. Ensures all animations are detectable as animated Fixes #10599 Fixes #9477 Fixes #9257 Fixes #9066 Fixes #8867 Fixes #8671 Fixes #8505 Fixes #7885 Fixes #7041 Closes gh-1017
* Theme: Carat should be named caretLisa Seacat DeLuca2014-11-031-1/+1
| | | | | Fixes #10683 Closes gh-1382
* Menu: Wrap menu items in a <div>TJ VanToll2014-10-251-155/+202
| | | | | | | This avoids styling issues where ui-state-focus rules apply to submenus. Fixes #10162 Closes gh-1342
* Theme: Change default widget font-size to 1emTJ VanToll2014-10-245-15/+1
| | | | | Fixes #10131 Closes gh-1374
* Tests: Removing unused visual theme testTJ VanToll2014-10-242-530/+0
|
* Tests: Adding missing dependencyTJ VanToll2014-10-241-0/+1
|
* Effects tests: Add clip visual testMike Sherov2014-09-031-0/+92
| | | | Closes gh-1338
* Effects Tests: Add shake visual testMike Sherov2014-09-022-0/+100
| | | | Closes gh-1328
* Effects Tests: Fix and format scale visual testMike Sherov2014-09-021-12/+23
|
* Mouse: Only detect out of document mouseups after a mousemoveMike Sherov2014-08-202-0/+43
| | | | | | | | This prevents the firing of mouseup in the case of IE<9, which will fire a mousemove event if content is placed under the cursor on mousedown. Fixes #7778
* Build: Reorganize external directoryScott González2014-06-2429-29/+29
| | | | | | | Put each external library into its own directory. Move jquery.js to external. Ref gh-1266
* Menu: Use item.outerHeight() in _scrollIntoViewJörn Zaefferer2014-05-061-1/+1
| | | | Fixes #9991
* Resizable: Remove bad workaround for draggable+resizableJörn Zaefferer2014-04-162-0/+52
| | | | | | | | | | | | 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
* All: Rename jquery.js to exclude version in filenameJörn Zaefferer2014-03-0528-28/+28
|
* 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
|
* Tests: Use .bind() instead of .on()Scott González2014-02-112-4/+4
|
* All: Rename all files, removing the "jquery.ui." prefix;Rafael Xavier de Souza2014-01-2428-212/+212
| | | | | | | - By executing https://gist.github.com/jzaefferer/893fcf70b7eebc1dc271; Fixes #9464 Closes gh-1029
* Tests: Add link to visual test for selectmenu to indexJörn Zaefferer2014-01-071-0/+5
|
* Selectmenu Tests: add unit and visual tests for width optionFelix Nagel2013-12-071-1/+53
|
* Menu: Add ui-front on submenus to address opacity messing up stacking order. ↵Jörn Zaefferer2013-12-031-2/+11
| | | | Fixes #9650 - Menu: Disabled item visible through submenu on top
* Merge branch 'master' into selectmenuJörn Zaefferer2013-11-251-522/+515
|\
| * Tests: Cleanup visual theme testJörn Zaefferer2013-11-201-522/+515
| |
* | Selectmenu: improve disabled item handlingFelix Nagel2013-10-291-1/+1
| |
* | Merge branch 'master' into selectmenuFelix Nagel2013-10-103-170/+217
|\|
| * Menu: Add items option for better definition of menu items in non ↵Kris Borchers2013-10-051-2/+7
| | | | | | | | parent-child structures