From: Scott González Date: Wed, 21 Jul 2010 15:25:33 +0000 (-0400) Subject: Core: Removed tests for .attr() ARIA override since the override no longer exists. X-Git-Tag: 1.8.3~26 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=245b93293335e916771aa78363e83f244b43de7a;p=jquery-ui.git Core: Removed tests for .attr() ARIA override since the override no longer exists. --- diff --git a/tests/unit/core/core.html b/tests/unit/core/core.html index 468c962e5..4141bcd09 100644 --- a/tests/unit/core/core.html +++ b/tests/unit/core/core.html @@ -117,8 +117,6 @@ -
-
diff --git a/tests/unit/core/core.js b/tests/unit/core/core.js index df811093b..6c550ce0e 100644 --- a/tests/unit/core/core.js +++ b/tests/unit/core/core.js @@ -5,26 +5,6 @@ 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);