From 245b93293335e916771aa78363e83f244b43de7a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Wed, 21 Jul 2010 11:25:33 -0400 Subject: [PATCH] Core: Removed tests for .attr() ARIA override since the override no longer exists. --- tests/unit/core/core.html | 2 -- tests/unit/core/core.js | 20 -------------------- 2 files changed, 22 deletions(-) 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); -- 2.39.5