remove trailing spaces
[jquery.git] / src / selector.js
index 0199a27..fcab67f 100644 (file)
@@ -17,19 +17,19 @@ var Sizzle = function(selector, context, results, seed) {
        if ( context.nodeType !== 1 && context.nodeType !== 9 ) {
                return [];
        }
-       
+
        if ( !selector || typeof selector !== "string" ) {
                return results;
        }
 
        var parts = [], m, set, checkSet, check, mode, extra, prune = true, contextXML = isXML(context);
-       
+
        // Reset the position of the chunker regexp (start from head)
        chunker.lastIndex = 0;
-       
+
        while ( (m = chunker.exec(selector)) !== null ) {
                parts.push( m[1] );
-               
+
                if ( m[2] ) {
                        extra = RegExp.rightContext;
                        break;
@@ -65,7 +65,7 @@ var Sizzle = function(selector, context, results, seed) {
                if ( context ) {
                        var ret = seed ?
                                { expr: parts.pop(), set: makeArray(seed) } :
-                               Sizzle.find( parts.pop(), parts.length === 1 && context.parentNode ? context.parentNode : context, contextXML );
+                               Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML );
                        set = ret.expr ? Sizzle.filter( ret.expr, ret.set ) : ret.set;
 
                        if ( parts.length > 0 ) {
@@ -158,7 +158,7 @@ Sizzle.find = function(expr, context, isXML){
 
        for ( var i = 0, l = Expr.order.length; i < l; i++ ) {
                var type = Expr.order[i], match;
-               
+
                if ( (match = Expr.match[ type ].exec( expr )) ) {
                        var left = RegExp.leftContext;
 
@@ -420,7 +420,7 @@ var Expr = Sizzle.selectors = {
                },
                ATTR: function(match, curLoop, inplace, result, not, isXML){
                        var name = match[1].replace(/\\/g, "");
-                       
+
                        if ( !isXML && Expr.attrMap[name] ) {
                                match[1] = Expr.attrMap[name];
                        }
@@ -446,7 +446,7 @@ var Expr = Sizzle.selectors = {
                        } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) {
                                return true;
                        }
-                       
+
                        return match;
                },
                POS: function(match){
@@ -580,20 +580,20 @@ var Expr = Sizzle.selectors = {
                                        if ( first == 1 && last == 0 ) {
                                                return true;
                                        }
-                                       
+
                                        var doneName = match[0],
                                                parent = elem.parentNode;
-       
+
                                        if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) {
                                                var count = 0;
                                                for ( node = parent.firstChild; node; node = node.nextSibling ) {
                                                        if ( node.nodeType === 1 ) {
                                                                node.nodeIndex = ++count;
                                                        }
-                                               } 
+                                               }
                                                parent.sizcache = doneName;
                                        }
-                                       
+
                                        var diff = elem.nodeIndex - last;
                                        if ( first == 0 ) {
                                                return diff == 0;
@@ -656,7 +656,7 @@ var Expr = Sizzle.selectors = {
 var origPOS = Expr.match.POS;
 
 for ( var type in Expr.match ) {
-       Expr.match[ type ] = RegExp( Expr.match[ type ].source + /(?![^\[]*\])(?![^\(]*\))/.source );
+       Expr.match[ type ] = new RegExp( Expr.match[ type ].source + /(?![^\[]*\])(?![^\(]*\))/.source );
 }
 
 var makeArray = function(array, results) {
@@ -666,7 +666,7 @@ var makeArray = function(array, results) {
                results.push.apply( results, array );
                return results;
        }
-       
+
        return array;
 };
 
@@ -735,9 +735,9 @@ if ( document.documentElement.compareDocumentPosition ) {
 // querying by getElementById (and provide a workaround)
 (function(){
        // We're going to inject a fake input element with a specified name
-       var form = document.createElement("form"),
+       var form = document.createElement("div"),
                id = "script" + (new Date).getTime();
-       form.innerHTML = "<input name='" + id + "'/>";
+       form.innerHTML = "<a name='" + id + "'/>";
 
        // Inject it into the root element, check its status, and remove it quickly
        var root = document.documentElement;
@@ -811,7 +811,7 @@ if ( document.querySelectorAll ) (function(){
        if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) {
                return;
        }
-       
+
        Sizzle = function(query, context, extra, seed){
                context = context || document;
 
@@ -822,14 +822,13 @@ if ( document.querySelectorAll ) (function(){
                                return makeArray( context.querySelectorAll(query), extra );
                        } catch(e){}
                }
-               
+
                return oldSizzle(query, context, extra, seed);
        };
 
-       Sizzle.find = oldSizzle.find;
-       Sizzle.filter = oldSizzle.filter;
-       Sizzle.selectors = oldSizzle.selectors;
-       Sizzle.matches = oldSizzle.matches;
+       for ( var prop in oldSizzle ) {
+               Sizzle[ prop ] = oldSizzle[ prop ];
+       }
 })();
 
 if ( document.getElementsByClassName && document.documentElement.getElementsByClassName ) (function(){
@@ -970,7 +969,7 @@ jQuery.expr = Sizzle.selectors;
 jQuery.expr[":"] = jQuery.expr.filters;
 
 Sizzle.selectors.filters.hidden = function(elem){
-       return elem.offsetWidth === 0 || elem.offsetHeight === 0;
+       return elem.offsetWidth === 0 && elem.offsetHeight === 0;
 };
 
 Sizzle.selectors.filters.visible = function(elem){