mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
29 lines
696 B
JavaScript
29 lines
696 B
JavaScript
/*
|
|
* core unit tests
|
|
*/
|
|
(function($) {
|
|
|
|
module('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');
|
|
});
|
|
|
|
})(jQuery);
|