Comment #2 on issue 16047 by [email protected]: Debian Crash WebCore::FontFallbackList::determinePitch(WebCore::Font const*) const-38D2D2D http://code.google.com/p/chromium/issues/detail?id=16047
In FontCache::getCachedFontPlatformData(), "sans" and "Sans" both produce the same hash. http://bluefish.openoffice.nl/bluefish.css asks for "sans", so on the first lookup, we call createFontPlatformData() and it returns NULL because it doesn't know about "sans". The second time around, we do the fallback and look for "Sans". However, since the two has the same hash, we return the value for "sans" in getCachedFontPlatformData(), and get into trouble. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs -~----------~----~----~----~------~----~------~--~---
