diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-11-07 13:49:23 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-11-07 13:49:23 +0000 |
commit | d942907043e6e2e08217ea99e258fca72cfb7699 (patch) | |
tree | 2094bcb055c76eaa2abecd4b2dd31358d0e0c4e2 | |
parent | 8dc3f8d64394992f312a3ec41675ae1d0f92b465 (diff) | |
download | jquery-ui-d942907043e6e2e08217ea99e258fca72cfb7699.tar.gz jquery-ui-d942907043e6e2e08217ea99e258fca72cfb7699.zip |
Core Tests: Moved ARIA tests out of selectors module.
-rw-r--r-- | tests/core.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/core.js b/tests/core.js index ce28aea4e..6c701de41 100644 --- a/tests/core.js +++ b/tests/core.js @@ -53,7 +53,9 @@ test("tabbable - tabindex", function() { ok(!$('#input4-4').is(':tabbable'), 'input, tabindex -50'); }); -test("aria", function() { +module('jQuery extensions'); + +test("attr - aria", function() { expect(4); ok(!$('#aria').attr('role'), 'role is empty via attr'); |