mirror of
https://github.com/jquery/jquery.git
synced 2026-01-23 08:48:10 -05:00
Update Sizzle: fix a failing test in traversing. Move an attribute selector test to jQuery-only.
This commit is contained in:
Submodule src/sizzle updated: 831c9c489e...ed5c22e10f
@@ -29,9 +29,15 @@ test("class - jQuery only", function() {
|
||||
});
|
||||
|
||||
test("attributes - jQuery only", function() {
|
||||
expect( 1 );
|
||||
expect( 2 );
|
||||
|
||||
t( "Find elements with a tabindex attribute", "[tabindex]", ["listWithTabIndex", "foodWithNegativeTabIndex", "linkWithTabIndex", "linkWithNegativeTabIndex", "linkWithNoHrefWithTabIndex", "linkWithNoHrefWithNegativeTabIndex"] );
|
||||
// jQuery #12523
|
||||
deepEqual(
|
||||
jQuery.find( "[title]", null, null, jQuery("#qunit-fixture a").get().concat( document.createTextNode("") ) ),
|
||||
q("google"),
|
||||
"Text nodes fail attribute tests without exception"
|
||||
);
|
||||
});
|
||||
|
||||
if ( jQuery.css ) {
|
||||
|
||||
Reference in New Issue
Block a user