mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Core tests: Coding standards.
This commit is contained in:
parent
eb9804bc99
commit
24d978f833
@ -1,49 +1,44 @@
|
||||
/*
|
||||
* core unit tests
|
||||
*/
|
||||
(function($) {
|
||||
(function( $ ) {
|
||||
|
||||
module('core - jQuery extensions');
|
||||
module( "core - jQuery extensions" );
|
||||
|
||||
test('focus - original functionality', function() {
|
||||
expect(1);
|
||||
|
||||
$('#inputTabindex0')
|
||||
test( "focus - original functionality", function() {
|
||||
expect( 1 );
|
||||
$( "#inputTabindex0" )
|
||||
.focus(function() {
|
||||
ok(true, 'event triggered');
|
||||
ok( true, "event triggered" );
|
||||
})
|
||||
.focus();
|
||||
});
|
||||
|
||||
asyncTest('focus', function() {
|
||||
expect(2);
|
||||
$('#inputTabindex0')
|
||||
asyncTest( "focus", function() {
|
||||
expect( 2 );
|
||||
$( "#inputTabindex0" )
|
||||
.focus(function() {
|
||||
ok(true, 'event triggered');
|
||||
ok( true, "event triggered" );
|
||||
})
|
||||
.focus(500, function() {
|
||||
ok(true, 'callback triggered');
|
||||
$(this).unbind('focus');
|
||||
.focus( 500, function() {
|
||||
ok( true, "callback triggered" );
|
||||
start();
|
||||
});
|
||||
});
|
||||
|
||||
test('zIndex', function() {
|
||||
var el = $('#zIndexAutoWithParent'),
|
||||
test( "zIndex", function() {
|
||||
var el = $( "#zIndexAutoWithParent" ),
|
||||
parent = el.parent();
|
||||
equal(el.zIndex(), 100, 'zIndex traverses up to find value');
|
||||
equal(parent.zIndex(200), parent, 'zIndex setter is chainable');
|
||||
equal(el.zIndex(), 200, 'zIndex setter changed zIndex');
|
||||
equal( el.zIndex(), 100, "zIndex traverses up to find value" );
|
||||
equal( parent.zIndex(200 ), parent, "zIndex setter is chainable" );
|
||||
equal( el.zIndex(), 200, "zIndex setter changed zIndex" );
|
||||
|
||||
el = $('#zIndexAutoWithParentViaCSS');
|
||||
equal(el.zIndex(), 0, 'zIndex traverses up to find CSS value, not found because not positioned');
|
||||
el = $( "#zIndexAutoWithParentViaCSS" );
|
||||
equal( el.zIndex(), 0, "zIndex traverses up to find CSS value, not found because not positioned" );
|
||||
|
||||
el = $('#zIndexAutoWithParentViaCSSPositioned');
|
||||
equal(el.zIndex(), 100, 'zIndex traverses up to find CSS value');
|
||||
el.parent().zIndex(200);
|
||||
equal(el.zIndex(), 200, 'zIndex setter changed zIndex, overriding CSS');
|
||||
el = $( "#zIndexAutoWithParentViaCSSPositioned" );
|
||||
equal( el.zIndex(), 100, "zIndex traverses up to find CSS value" );
|
||||
el.parent().zIndex( 200 );
|
||||
equal( el.zIndex(), 200, "zIndex setter changed zIndex, overriding CSS" );
|
||||
|
||||
equal($('#zIndexAutoNoParent').zIndex(), 0, 'zIndex never explicitly set in hierarchy');
|
||||
equal( $( "#zIndexAutoNoParent" ).zIndex(), 0, "zIndex never explicitly set in hierarchy" );
|
||||
});
|
||||
|
||||
test( "innerWidth - getter", function() {
|
||||
@ -154,4 +149,4 @@ test( "outerHeight(true) - setter", function() {
|
||||
equal( el.height(), 32, "height set properly when hidden" );
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
})( jQuery );
|
||||
|
Loading…
Reference in New Issue
Block a user