commit 2ea8bf10d5546b5f7a9929b27163ab917a3a4ea5
parent 0da7c458ea8e0658e4201cda9849286da19717ff
Author: Davide P. Cervone <dpvc@union.edu>
Date: Sun, 28 Dec 2014 16:42:10 -0500
Firefox 33 implemented column and row-spacing, so don't do the hack to get around it.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/unpacked/jax/output/NativeMML/jax.js b/unpacked/jax/output/NativeMML/jax.js
@@ -1344,8 +1344,8 @@
// correctly and thus the element is displayed incorrectly in <mtable>.
nMML.spaceWidthBug = !browser.versionAtLeast("20.0");
- nMML.tableSpacingBug = true; // mtable@rowspacing/mtable@columnspacing not
- // supported.
+ // mtable@rowspacing/mtable@columnspacing not supported.
+ nMML.tableSpacingBug = !browser.versionAtLeast("33.0");
nMML.tableLabelBug = true; // mlabeledtr is not implemented.
nMML.mfencedBug = true; // mfenced not displayed correctly
},