aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/selector.js
diff options
context:
space:
mode:
authortimmywil <timmywillisn@gmail.com>2012-05-30 14:07:59 -0400
committertimmywil <timmywillisn@gmail.com>2012-05-30 14:07:59 -0400
commitf633c7f165dc63b0df49159bdea2f3d62c876fe2 (patch)
treeadf8ee2075f6f3dc00a66505a8cc30d75198322b /test/unit/selector.js
parent3e2a77c5e882b5fc88bf5469ea00067833a2a059 (diff)
downloadjquery-f633c7f165dc63b0df49159bdea2f3d62c876fe2.tar.gz
jquery-f633c7f165dc63b0df49159bdea2f3d62c876fe2.zip
Uncomment an old test for when the tabindex attrhook was deprecated
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r--test/unit/selector.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js
index e19d97862..aa00ce88b 100644
--- a/test/unit/selector.js
+++ b/test/unit/selector.js
@@ -68,7 +68,7 @@ test("disconnected nodes", function() {
});
testIframe("selector/html5_selector", "attributes - jQuery.attr", function( jQuery, window, document ) {
- expect( 35 );
+ expect( 36 );
/**
* Returns an array of elements with the given IDs
@@ -150,9 +150,9 @@ testIframe("selector/html5_selector", "attributes - jQuery.attr", function( jQue
});
t( "Enumerated attribute", "[spellcheck]", ["span1"]);
- // t( "tabindex selector does not retrieve all elements in IE6/7(#8473)", "form, [tabindex]", ["form1", "text1"]); // Uncomment this when the tabindex attrHook is deprecated
+ t( "tabindex selector does not retrieve all elements in IE6/7(#8473)", "form, [tabindex]", ["form1", "text1"] );
- t( "Improperly named form elements do not interfere with form selections (#9570)", "form[name='formName']", ["form1"]);
+ t( "Improperly named form elements do not interfere with form selections (#9570)", "form[name='formName']", ["form1"] );
});
testIframe("selector/sizzle_cache", "Sizzle cache collides with multiple Sizzles on a page", function( jQuery, window, document ) {