Lines Matching refs:rightNode
128 * @param DOMNode $rightNode
134 …public static function diffNode(DOMNode $leftNode, DOMNode $rightNode, &$error, array $excludedAtt… argument
141 $rightNodeName = $rightNode->localName;
143 …$error .= "The node (" . $rightNode->getNodePath() . ") are different (" . $leftNodeName . "," . $…
147 $rightNodeAttributes = $rightNode->attributes;
149 …$error .= "The node (" . $rightNode->getNodePath() . ") have no attributes while the left node has…
243 if ($rightNode->hasAttributes()) {
244 for ($i = 0; $i < $rightNode->attributes->length; $i++) {
246 $rightAtt = $rightNode->attributes->item($i);
253 $rightNodeValue = trim($rightNode->nodeValue);
255 …$error .= "The node (" . $rightNode->getNodePath() . ") have different values (" . $leftNodeValue …
264 $rightChildNodes = $rightNode->childNodes;