Home | History | Annotate | Download | only in parse-only

Lines Matching refs:nodeValue

211 						this.nodeValue :
1003 return elem.getAttributeNode( name ).nodeValue;
2148 return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? [m] : undefined : [];
2154 return elem.nodeType === 1 && node && node.nodeValue === match;
4636 case 3: return (/\S/).test(obj.nodeValue) ? 'textnode' : 'whitespace';
8794 $A(div.childNodes).inject('', function(memo, node) { return memo+node.nodeValue }) :
8795 div.childNodes[0].nodeValue) : '';
10246 if (node.nodeType == 3 && !/\S/.test(node.nodeValue))
11440 var nodeValue = Element.readAttribute(element, matches[1]);
11441 return nodeValue && Selector.operators[matches[2]](nodeValue, matches[5] || matches[6]);
11616 var nodeValue = Element.readAttribute(node, attr);
11617 if (nodeValue === null) continue;
11618 if (handler(nodeValue, value)) results.push(node);