]> source.dussan.org Git - jquery-ui.git/commitdiff
Dialog: Moved resizable handle test from resizable.
authorScott González <scott.gonzalez@gmail.com>
Mon, 26 Nov 2012 21:27:18 +0000 (16:27 -0500)
committerScott González <scott.gonzalez@gmail.com>
Mon, 26 Nov 2012 21:27:18 +0000 (16:27 -0500)
tests/unit/dialog/dialog_core.js
tests/unit/resizable/resizable.html
tests/unit/resizable/resizable_options.js

index 404e8177027c2978d44df7ab0ab3e9aa4d8b68bb..9c0e80825f9ed028a0e47ce7ecf3a6b4fbd8490d 100644 (file)
@@ -80,4 +80,17 @@ test( "focus tabbable", function() {
        }, 13);
 });
 
+// #7960
+test( "resizable handles below modal overlays", function() {
+       expect( 1 );
+
+       var resizable = $( "<div>" ).resizable(),
+               dialog = $( "<div>" ).dialog({ modal: true }),
+               resizableZindex = parseInt( resizable.find( ".ui-resizable-handle" ).css( "zIndex" ), 10 ),
+               overlayZindex = parseInt( $( ".ui-widget-overlay" ).css( "zIndex" ), 10 );
+
+       ok( resizableZindex < overlayZindex, "Resizable handles have lower z-index than modal overlay" );
+       dialog.dialog( "destroy" );
+});
+
 })(jQuery);
index 7a63de0bccb7682b81b6f8beb98beaeaee92906a..0a27f2a80eb89d7bba6fe799ca25a8d4079b19fd 100644 (file)
@@ -16,8 +16,6 @@
                        "ui/jquery.ui.core.js",
                        "ui/jquery.ui.widget.js",
                        "ui/jquery.ui.mouse.js",
-                       "ui/jquery.ui.button.js",
-                       "ui/jquery.ui.dialog.js",
                        "ui/jquery.ui.resizable.js"
                ]
        });
index c8627953b749b1e879f8e14836abe41de478af0d..4b47762ab8799d22029c32027401bc8659a518f1 100644 (file)
@@ -210,18 +210,4 @@ test("zIndex, applied to all handles", function() {
        });
 });
 
-test( "zIndex, less than a modal dialog's overlay by default", function() {
-       expect(1);
-
-       var resizable = $( '<div></div>' ).resizable();
-       var dialog = $( '<div></div>' ).dialog( { modal: true });
-
-       var resizableZIndex = resizable.resizable( 'option', 'zIndex' );
-       var overlayZIndex = $( '.ui-widget-overlay' ).css( 'zIndex' );
-       overlayZIndex = parseInt( overlayZIndex, 10 );
-
-       ok( resizableZIndex < overlayZIndex, "Resizables behind a modal dialog must have a smaller z-index than the overlay so that they're not resizable.  See #7960." );
-       dialog.dialog( 'destroy' );
-});
-
 })(jQuery);