зеркало из https://github.com/mozilla/gecko-dev.git
r=mkaply, sr=attinasi OS/2 only - don't shortcut font computations for fixed with fonts
This commit is contained in:
Родитель
cec64f1f6f
Коммит
6db8af531a
|
@ -4395,12 +4395,16 @@ nsTextFrame::MeasureText(nsIPresContext* aPresContext,
|
|||
PRBool endsInNewline = PR_FALSE;
|
||||
PRBool justDidFirstLetter = PR_FALSE;
|
||||
nsTextDimensions dimensions, lastWordDimensions;
|
||||
#if defined(_WIN32) || defined(XP_OS2)
|
||||
#if defined(_WIN32)
|
||||
PRBool measureTextRuns = !aTextData.mComputeMaxWordWidth && !aTs.mPreformatted &&
|
||||
!aTs.mSmallCaps && !aTs.mWordSpacing && !aTs.mLetterSpacing &&
|
||||
aTextData.mWrapping;
|
||||
// Don't measure text runs with letter spacing active, it doesn't work
|
||||
// it also doesn't work if we are not word-wrapping (bug 42832)
|
||||
#elif defined(XP_OS2)
|
||||
PRBool measureTextRuns = !aTextData.mComputeMaxWordWidth && !aTs.mSmallCaps &&
|
||||
!aTs.mWordSpacing && !aTs.mLetterSpacing &&
|
||||
aTextData.mWrapping;
|
||||
#else
|
||||
PRBool measureTextRuns = PR_FALSE;
|
||||
#endif
|
||||
|
|
|
@ -4395,12 +4395,16 @@ nsTextFrame::MeasureText(nsIPresContext* aPresContext,
|
|||
PRBool endsInNewline = PR_FALSE;
|
||||
PRBool justDidFirstLetter = PR_FALSE;
|
||||
nsTextDimensions dimensions, lastWordDimensions;
|
||||
#if defined(_WIN32) || defined(XP_OS2)
|
||||
#if defined(_WIN32)
|
||||
PRBool measureTextRuns = !aTextData.mComputeMaxWordWidth && !aTs.mPreformatted &&
|
||||
!aTs.mSmallCaps && !aTs.mWordSpacing && !aTs.mLetterSpacing &&
|
||||
aTextData.mWrapping;
|
||||
// Don't measure text runs with letter spacing active, it doesn't work
|
||||
// it also doesn't work if we are not word-wrapping (bug 42832)
|
||||
#elif defined(XP_OS2)
|
||||
PRBool measureTextRuns = !aTextData.mComputeMaxWordWidth && !aTs.mSmallCaps &&
|
||||
!aTs.mWordSpacing && !aTs.mLetterSpacing &&
|
||||
aTextData.mWrapping;
|
||||
#else
|
||||
PRBool measureTextRuns = PR_FALSE;
|
||||
#endif
|
||||
|
|
Загрузка…
Ссылка в новой задаче