Bug 527201 - Remove the hack to skip bogus MathML _moz-* attributes in the HTML5 test suite. r=hsivonen

This commit is contained in:
Frédéric Wang
2013-12-16 09:01:29 -05:00
parent 9864d5b132
commit 35036e56b1

View File

@@ -148,10 +148,6 @@ function addLevels(walker, buf, indent) {
var attrs = walker.currentNode.attributes;
for (var i = 0; i < attrs.length; ++i) {
var localName = attrs[i].localName;
if (localName.indexOf("_moz-") == 0) {
// Skip bogus attributes added by the MathML implementation
continue;
}
var name;
var attrNs = attrs[i].namespaceURI;
if (null == attrNs) {