aboutsummaryrefslogtreecommitdiffstats
path: root/tests/visual/dialog
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Dialog: Remove use of `$.now()` in performance testScott González2016-03-031-4/+4
|
* Tests: Use demo bootstrap for visual testsJörn Zaefferer2015-09-305-74/+10
| | | | | | 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.
* Dialog: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-204-8/+8
|
* Theme: Change default widget font-size to 1emTJ VanToll2014-10-242-10/+0
| | | | | Fixes #10131 Closes gh-1374
* Build: Reorganize external directoryScott González2014-06-245-5/+5
| | | | | | | Put each external library into its own directory. Move jquery.js to external. Ref gh-1266
* All: Rename jquery.js to exclude version in filenameJörn Zaefferer2014-03-055-5/+5
|
* All: Rename all files, removing the "jquery.ui." prefix;Rafael Xavier de Souza2014-01-245-55/+55
| | | | | | | - By executing https://gist.github.com/jzaefferer/893fcf70b7eebc1dc271; Fixes #9464 Closes gh-1029
* Dialog: Switch back to shuffling z-index, but only look at .ui-front siblings.Jörn Zaefferer2013-10-021-0/+62
| | | | | Fixes #9166 - Dialog: moveToTop implementation resets flash/video/iframe/scroll Fixes #9364 - Dialog: Click of element with tooltip scrolls the dialog to the top
* Updating jQuery to 1.10.2.Bruno M. Custódio2013-07-054-4/+4
| | | | | Adding jQuery 1.10.0, 1.10.1, 1.10.2, 2.0.0, 2.0.1, 2.0.2 and 2.0.3 to the tests directory.
* Updating 'jQuery' to 1.9.1.Bruno M. Custódio2013-02-054-4/+4
|
* Updating to jQuery 1.9.0Kris Borchers2013-01-174-5/+5
|
* Dialog: Restrict title to a single line. Fixes #7773 - Dialog: If titlebar ↵Jörn Zaefferer2012-12-031-1/+6
| | | | changes height during resize, button pane positioning changes.
* Dialog: Update position when size is changed. Fixes #8789 - Dialog does not ↵Kris Borchers2012-11-261-2/+1
| | | | close for first click on chrome.
* Dialog: Extend autofocus, starting with [autofocus], then :tabbable content, ↵Jörn Zaefferer2012-11-261-1/+1
| | | | then buttonpane, then close button, then dialog. Fixes #4731 - Dialog: Add option to set which element gains focus on open
* Dialog: Extend visual test to verify DOM position restore on destroy; ↵Jörn Zaefferer2012-11-261-2/+9
| | | | overhaul unit test for destroy method.
* Dialog: Pass through icons and showText (as 'text') options to button. Fixes ↵Jörn Zaefferer2012-11-261-1/+12
| | | | #6830 - Allow Icons to be specified for Dialog buttons.
* Dialog: Extract button pane creation into _createButtonPaneJörn Zaefferer2012-11-261-1/+9
|
* Dialog: Use button widget for close button (was already listed as dependency)Jörn Zaefferer2012-11-264-0/+4
|
* Upgrade jQuery to 1.8.3.Scott González2012-11-144-4/+4
|
* Removed bgiframe.Scott González2012-10-264-4/+0
|
* Dialog: Visual test page for modal form dialogsJörn Zaefferer2012-10-251-0/+70
|
* Dialog: Visual test page for animated modal dialogJörn Zaefferer2012-10-251-0/+53
|
* Dialog: Save the active element that opened the dialog and restore focus to ↵Jörn Zaefferer2012-10-241-6/+12
| | | | that. Fixes #8730 - Dialog: Restore focus to opener.
* Dialog: Prevent dialog form losing focus (or move it back in IE <= 8).Jörn Zaefferer2012-10-241-1/+1
|
* Dialog: Awesome new stacking and overlay implementation. Fixes the following ↵Nate Eagle2012-10-241-0/+89
| | | | | | | | | | | | | | | | | | | tickets: Fixes #3534 - Dialog: Modal dialog disables all input elements on page. Fixes #4671 - Dialog: Modal Dialog disables vertical scroll bar in Chrome & Safari. Fixes #4995 - Dialog: Modal Dialog's overlay dissapears in IE when content is tall. Fixes #5388 - Dialog: Don't change z-index when already at the top. Fixes #5466 - Dialog: "modal" Dialog Incorrectly Cancels Input Events. Fixes #5762 - Dialog: Get rid of z-index workaround, document it instead. Fixes #6267 - Dialog: checkboxes that inherit a z-index < jqueryui.dialog z-index don't work. Fixes #7051 - Dialog: modal prevents tab key from moving focus off slider handle. Fixes #7107 - Dialog: Modal dialog event loss with high zindex child elements (FF 3.6). Fixes #7120 - Dialog: Modal operation interrupts drag drop marker functionality on gmaps. Fixes #8172 - Dialog: Change event cancelled when opening modal dialog from another modal dialog. Fixes #8583 - Dialog: Mouse event wrongly stopped. Fixes #8722 - Dialog: Remove stack option. Fixes #8729 - Dialog: Remove zIndex option.
* Upgrade jQuery to 1.8.2.Scott González2012-09-201-1/+1
|
* Upgrade jQuery to 1.8.0.Scott González2012-08-131-1/+1
|
* Visual tests: Cleanup.Scott González2012-05-151-0/+0
|
* Visual tests: Renamed files.Scott González2012-05-151-2/+4
|
* Upgrade jQuery to 1.7.2.Scott González2012-03-221-1/+1
|
* Visual tests: Cleaned up dialog tests.Scott González2012-02-011-2942/+50
|
* Upgrade jQuery to 1.7.1.Scott González2011-11-221-1/+1
|
* Upgrade jQuery to 1.7.Scott González2011-11-091-1/+1
|
* Upgraded jQuery to 1.6.4.Scott González2011-10-181-1/+1
|
* Upgrade jQuery to 1.6.2.Scott González2011-07-251-1/+1
|
* Dialog: Removed unnecessary visual test files.Scott González2011-03-2910-342/+0
|
* Switched to latest stable jQuery 1.5.1Richard Worth2011-03-0211-11/+11
|
* Upgraded jQuery to 1.4.4.Scott González2010-11-1211-11/+11
|
* Upgraded jQuery to 1.4.3.Scott González2010-10-2111-11/+11
|
* External: Updated bgiframe to 2.1.2. Fixes #6190 - Dialog demos don't work ↵Scott González2010-10-1911-11/+11
| | | | in IE9 because of bgiframe.
* Cleaning up visual tests jzaefferer2010-03-212-72/+9
| | | Fixes #5395 - Visual Tests Cleanup
* Dialog visual test - corrected page title, added headingRichard Worth2010-03-151-1/+4
|
* dialog: added visual test for position right topRichard Worth2010-03-121-0/+33
|
* html pages: added HTML5 meta charset UTF-8 tag, changed DOCTYPE to uppercaseRichard Worth2010-03-1211-49/+61
|
* Dialog: Changed height measurement to hide content because IE quirks mode ↵Brant Burnett2010-02-221-0/+39
| | | | ignores height: 0 (Fixed #4350 No Scrollbars in IE in Quirksmode)
* Fixed #5182 - Update to jQuery 1.4.2Richard Worth2010-02-1610-10/+10
|
* fixed #5163 - themes: css files need to be renamed to be consistent with js ↵Richard Worth2010-02-1610-10/+10
| | | | file renames in 1.8a1
* Fix for #5101 - broken dialog visual test pageJörn Zaefferer2010-01-271-0/+1
|
* switched to jQuery 1.4.1Richard Worth2010-01-2710-10/+10
|