Firefox 13: remove work around for mtable@width in native MathML ouput mode (issue 214)
This commit is contained in:
parent
55a6b6f915
commit
32bfe5a584
File diff suppressed because one or more lines are too long
|
@ -480,10 +480,11 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
if (HUB.Browser.isFirefox) {
|
if (HUB.Browser.isFirefox) {
|
||||||
|
if (!HUB.Browser.versionAtLeast("13.0")) {
|
||||||
MML.mtable.Augment({
|
MML.mtable.Augment({
|
||||||
toNativeMML: function (parent) {
|
toNativeMML: function (parent) {
|
||||||
//
|
//
|
||||||
// FF doesn't handle width, so put it in styles instead
|
// Firefox < 13 doesn't handle width, so put it in styles instead
|
||||||
//
|
//
|
||||||
if (this.width) {
|
if (this.width) {
|
||||||
var styles = (this.style||"").replace(/;\s*$/,"").split(";");
|
var styles = (this.style||"").replace(/;\s*$/,"").split(";");
|
||||||
|
@ -494,6 +495,7 @@
|
||||||
this.SUPER(arguments).toNativeMML.call(this,parent);
|
this.SUPER(arguments).toNativeMML.call(this,parent);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
if (!HUB.Browser.versionAtLeast("9.0")) {
|
if (!HUB.Browser.versionAtLeast("9.0")) {
|
||||||
MML.mlabeledtr.Augment({
|
MML.mlabeledtr.Augment({
|
||||||
toNativeMML: function (parent) {
|
toNativeMML: function (parent) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user