Fix buster for null-strings in the dom. r=Pike. Not part of the build.

This commit is contained in:
peterv%netscape.com 2001-10-25 08:40:57 +00:00
Родитель 254c898f31
Коммит 9ef703edc9
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -50,14 +50,14 @@ function DiffNodeAndChildren(node1, node2)
for (var index = 0; index < attributes.length; index++) {
item = attributes.item(index);
ns = item.namespaceURI;
if (ns=="") {
name = item.nodeName;
otherValue = node2.getAttribute(name);
}
else {
if (ns) {
name = item.localName;
otherValue = node2.getAttributeNS(ns, name);
}
else {
name = item.nodeName;
otherValue = node2.getAttribute(name);
}
value = item.nodeValue;
if (!nsreg.test(name) && otherValue!=value) {
return ErrorUp("Different values for attribute", node1, node2);