Make NativeMML output only set attributes when they are not the default (just like toMathML).

This commit is contained in:
Davide P. Cervone 2016-08-23 11:08:55 -04:00
parent 7ec37f65f0
commit 814045a141

View File

@ -518,8 +518,10 @@
skip = MML.skipAttributes, copy = MML.copyAttributes;
if (!this.attrNames) {
for (var id in defaults) {if (!skip[id] && !copy[id] && defaults.hasOwnProperty(id)) {
if (this[id] != null && this[id] !== defaults[id])
tag.setAttribute(id,this.NativeMMLattribute(this[id]));
if (this[id] != null && this[id] !== defaults[id]) {
if (this.Get(id,null,1) !== this[id])
tag.setAttribute(id,this.NativeMMLattribute(this[id]));
}
}}
}
for (var i = 0, m = names.length; i < m; i++) {