Dialog: Moved resizable handle test from resizable.

This commit is contained in:
Scott González 2012-11-26 16:27:18 -05:00
parent f0c203a9a0
commit ee8d20ea06
3 changed files with 13 additions and 16 deletions

View 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);

View 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"
]
});

View 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);