From bede30df0baea7e8e1e2f6d108a73e051cd64fc3 Mon Sep 17 00:00:00 2001 From: Martin Stransky Date: Tue, 18 Dec 2007 14:33:32 +0000 Subject: - moved to XUL Runner and updated to 3.0b3pre - removed firefox-devel package, gecko-libs is provided by xulrunner-devel now. --- firefox-1.5-pango-justified-range.patch | 53 --------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 firefox-1.5-pango-justified-range.patch (limited to 'firefox-1.5-pango-justified-range.patch') diff --git a/firefox-1.5-pango-justified-range.patch b/firefox-1.5-pango-justified-range.patch deleted file mode 100644 index 7614d0e..0000000 --- a/firefox-1.5-pango-justified-range.patch +++ /dev/null @@ -1,53 +0,0 @@ -diff -pruN -x '.moz*' -x .deps -x 'thunderbird*' -x '*.mk' -x 'config*' -x dist -x build -x toolkit -x '*o' -x '*a' -x '*html' -x 'firefox*' mozilla.orig/layout/generic/nsTextFrame.cpp mozilla/layout/generic/nsTextFrame.cpp ---- mozilla.orig/layout/generic/nsTextFrame.cpp 2006-12-20 12:15:38.000000000 +0900 -+++ mozilla/layout/generic/nsTextFrame.cpp 2006-12-20 21:29:39.000000000 +0900 -@@ -2973,15 +2973,16 @@ nsTextFrame::RenderString(nsIRenderingCo - - nsIFontMetrics* lastFont = aTextStyle.mLastFont; - PRInt32 pendingCount; -- PRUnichar* runStart = bp; -+ PRUnichar* runStart = bp, *top = aBuffer; - nscoord charWidth, width = 0; - PRInt32 countSoFar = 0; -+ PRUint32 offset; - // Save the color we want to use for the text, since calls to - // PaintTextDecorations in this method will call SetColor() on the rendering - // context. - nscolor textColor; - aRenderingContext.GetColor(textColor); -- for (; --aLength >= 0; aBuffer++) { -+ for (offset = 0; offset < aLength; aBuffer++, offset++) { - nsIFontMetrics* nextFont; - nscoord glyphWidth = 0; - PRUnichar ch = *aBuffer; -@@ -3038,7 +3039,7 @@ nsTextFrame::RenderString(nsIRenderingCo - else if (ch == ' ') { - glyphWidth += aTextStyle.mSpaceWidth + aTextStyle.mWordSpacing + aTextStyle.mLetterSpacing; - } -- else if (IS_HIGH_SURROGATE(ch) && aLength > 0 && -+ else if (IS_HIGH_SURROGATE(ch) && (offset + 1) < aLength && - IS_LOW_SURROGATE(*(aBuffer+1))) { - - // special handling for surrogate pair -@@ -3046,7 +3047,7 @@ nsTextFrame::RenderString(nsIRenderingCo - glyphWidth += charWidth + aTextStyle.mLetterSpacing; - // copy the surrogate low - *bp++ = ch; -- --aLength; -+ offset++; - aBuffer++; - ch = *aBuffer; - // put the width into the space buffer -@@ -3058,10 +3059,10 @@ nsTextFrame::RenderString(nsIRenderingCo - glyphWidth = 0; - } - else { -- aRenderingContext.GetWidth(ch, charWidth); -+ aRenderingContext.GetRangeWidth(top, aLength, offset, offset + 1, (PRUint32&)charWidth); - glyphWidth += charWidth + aTextStyle.mLetterSpacing; - } -- if (justifying && (!isEndOfLine || aLength > 0) -+ if (justifying && (!isEndOfLine || (offset + 1) < aLength) - && IsJustifiableCharacter(ch, isCJ)) { - glyphWidth += aTextStyle.mExtraSpacePerJustifiableCharacter; - if ((PRUint32)--aTextStyle.mNumJustifiableCharacterToRender -- cgit