Skip to content

Commit

Permalink
A follow-up for bug jquery#3945. ID selectors don't work in querySele…
Browse files Browse the repository at this point in the history
…ctorAll on XML documents, so we just fall back to the normal engine.
  • Loading branch information
jeresig committed Jan 21, 2009
1 parent 7d9d210 commit d45f193
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/selector.js
Expand Up @@ -723,7 +723,9 @@ if ( document.querySelectorAll ) (function(){
Sizzle = function(query, context, extra, seed){
context = context || document;

if ( !seed && context.nodeType === 9 ) {
// Only use querySelectorAll on non-XML documents
// (ID selectors don't work in non-HTML documents)
if ( !seed && context.nodeType === 9 && !isXML(context) ) {
try {
return makeArray( context.querySelectorAll(query), extra );
} catch(e){}
Expand Down
4 changes: 2 additions & 2 deletions test/unit/selector.js
Expand Up @@ -28,8 +28,8 @@ if ( location.protocol != "file:" ) {
equals( jQuery("foo_bar", xml).length, 1, "Element Selector with underscore" );
equals( jQuery("property[name=prop2]", xml).length, 1, "Attribute selector with name" );
equals( jQuery("[name=prop2]", xml).length, 1, "Attribute selector with name" );
equals( jQuery("#seite1", xml).length, 1, "Attribute selector with name" );
equals( jQuery("component#seite1", xml).length, 1, "Attribute selector with name" );
equals( jQuery("#seite1", xml).length, 1, "Attribute selector with ID" );
equals( jQuery("component#seite1", xml).length, 1, "Attribute selector with ID" );
start();
});
});
Expand Down

0 comments on commit d45f193

Please sign in to comment.