All browsers seem to need the zeroWidthBug fix, so remove check and assume true. Should fix Fred's latest problem with issue #237.
This commit is contained in:
parent
b12c2bd77c
commit
b5931896a5
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -2442,7 +2442,7 @@
|
|||
var accent = (i != this.base && values[this.ACCENTS[i]]);
|
||||
if (accent && box.bbox.w <= 1/HTMLCSS.em+.0001) { // images can get the width off by 1px
|
||||
box.bbox.w = box.bbox.rw - box.bbox.lw; box.bbox.noclip = true;
|
||||
if (box.bbox.lw && HTMLCSS.zeroWidthBug)
|
||||
if (box.bbox.lw)
|
||||
{box.insertBefore(HTMLCSS.createSpace(box.parentNode,0,0,-box.bbox.lw),box.firstChild)}
|
||||
HTMLCSS.createBlank(box,0,0,box.bbox.rw+.1);
|
||||
}
|
||||
|
@ -2687,7 +2687,6 @@
|
|||
msieNegativeBBoxBug: (mode >= 8), // negative bboxes have positive widths
|
||||
msieIE6: !isIE7,
|
||||
msieItalicWidthBug: true,
|
||||
zeroWidthBug: true,
|
||||
FontFaceBug: true,
|
||||
msieFontCSSBug: browser.isIE9,
|
||||
allowWebFonts: (mode >= 9 ? "woff" : "eot")
|
||||
|
@ -2779,7 +2778,6 @@
|
|||
operaVerticalAlignBug: true,
|
||||
operaFontSizeBug: browser.versionAtLeast("10.61"),
|
||||
initialSkipBug: true,
|
||||
zeroWidthBug: true,
|
||||
FontFaceBug: true,
|
||||
PaddingWidthBug: true,
|
||||
allowWebFonts: (browser.versionAtLeast("10.0") && !browser.isMini ? "otf" : false),
|
||||
|
|
Loading…
Reference in New Issue
Block a user