Uncomment an old test for when the tabindex attrhook was deprecated

This commit is contained in:
timmywil 2012-05-30 14:07:59 -04:00
parent 3e2a77c5e8
commit f633c7f165

View File

@ -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 ) {