Back out 238598 until I can convince myself that XftTextExtents does something reasonable when given a nbsp character, in the case where the font doesn't have it.

This commit is contained in:
bryner%brianryner.com 2004-10-14 18:51:33 +00:00
parent 3c13a82aef
commit 94121d63ca

View File

@ -902,13 +902,6 @@ nsFontMetricsXft::CacheFontMetrics(void)
nsFontXft *
nsFontMetricsXft::FindFont(PRUint32 aChar)
{
// If we have an NBSP character, we can treat it as a normal space.
// This helps because some fonts don't claim to support NBSP, and we waste
// time looking for a font that does. The only difference is for
// line-breaking, and that has already been done for us in layout.
if (aChar == 0xa0)
aChar = ' ';
// If mPattern is null, set up the base bits of it so we can
// match. If we need to match later we don't have to set it up