mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
Allow and ignore attributes in foreign namespaces
This commit is contained in:
parent
944e075488
commit
ccc4836fd7
1 changed files with 2 additions and 1 deletions
|
@ -83,7 +83,8 @@ std::map<std::string, std::string> gatherAttributes(const std::string& parentEle
|
||||||
validateXmlAttribute(parentElement, atts.getLocalName(a), atts.getValue(a), results); // special xml: attributes
|
validateXmlAttribute(parentElement, atts.getLocalName(a), atts.getValue(a), results); // special xml: attributes
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
validateAttribute(parentElement, atts.getLocalName(a), atts.getValue(a), rules, results);
|
if(atts.getURI(a) == "")
|
||||||
|
validateAttribute(parentElement, atts.getLocalName(a), atts.getValue(a), rules, results);
|
||||||
}
|
}
|
||||||
|
|
||||||
return results;
|
return results;
|
||||||
|
|
Loading…
Reference in a new issue