mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
70 lines
1.8 KiB
JavaScript
70 lines
1.8 KiB
JavaScript
/*
|
|
* core unit tests
|
|
*/
|
|
(function($) {
|
|
|
|
module('core - jQuery extensions');
|
|
|
|
test("attr - aria", function() {
|
|
expect(6);
|
|
|
|
var el = $('#aria');
|
|
|
|
ok(!el.attr('role'), 'role is empty via attr');
|
|
equals(el.attr('role', 'tablist').attr('role'), 'tablist', 'role is tablist');
|
|
|
|
equals(el.attr('aria-expanded'), undefined, 'aria expanded is undefined');
|
|
|
|
el.attr('aria-expanded', true);
|
|
equals(el.attr('aria-expanded'), 'true', 'aria expanded is true');
|
|
|
|
el.removeAttr('aria-expanded');
|
|
equals(el.attr('aria-expanded'), undefined, 'aria expanded is undefined after removing');
|
|
|
|
el.attr('aria-expanded', false);
|
|
equals(el.attr('aria-expanded'), 'false', 'aria expanded is false');
|
|
});
|
|
|
|
test('focus', function() {
|
|
expect(3);
|
|
|
|
var el = $('#inputTabindex0'),
|
|
// used to remove focus from the main element
|
|
other = $('#inputTabindex10');
|
|
|
|
// test original functionality
|
|
el.focus(function() {
|
|
ok(true, 'event triggered');
|
|
});
|
|
el.focus();
|
|
other.focus();
|
|
|
|
// trigger event handler + callback
|
|
stop();
|
|
el.focus(500, function() {
|
|
ok(true, 'callback triggered');
|
|
start();
|
|
});
|
|
other.focus();
|
|
});
|
|
|
|
test('zIndex', function() {
|
|
var el = $('#zIndexAutoWithParent'),
|
|
parent = el.parent();
|
|
equals(el.zIndex(), 100, 'zIndex traverses up to find value');
|
|
equals(parent.zIndex(200), parent, 'zIndex setter is chainable');
|
|
equals(el.zIndex(), 200, 'zIndex setter changed zIndex');
|
|
|
|
el = $('#zIndexAutoWithParentViaCSS');
|
|
equals(el.zIndex(), 0, 'zIndex traverses up to find CSS value, not found because not positioned');
|
|
|
|
el = $('#zIndexAutoWithParentViaCSSPositioned');
|
|
equals(el.zIndex(), 100, 'zIndex traverses up to find CSS value');
|
|
el.parent().zIndex(200);
|
|
equals(el.zIndex(), 200, 'zIndex setter changed zIndex, overriding CSS');
|
|
|
|
equals($('#zIndexAutoNoParent').zIndex(), 0, 'zIndex never explicitly set in hierarchy');
|
|
});
|
|
|
|
})(jQuery);
|