[Webkit-unassigned] [Bug 79961] Font fallback in cr-win is wrong for string contains zero-width-space
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Mar 21 10:56:09 PDT 2012
https://bugs.webkit.org/show_bug.cgi?id=79961
--- Comment #9 from Adam Barth <abarth at webkit.org> 2012-03-21 10:56:09 PST ---
(From update of attachment 130881)
View in context: https://bugs.webkit.org/attachment.cgi?id=130881&action=review
> Source/WebCore/platform/graphics/Font.h:232
> - static bool treatAsZeroWidthSpaceInComplexScript(UChar c) { return c < 0x20 || (c >= 0x7F && c < 0xA0) || c == softHyphen || (c >= 0x200e && c <= 0x200f) || (c >= 0x202a && c <= 0x202e) || c == zeroWidthNoBreakSpace || c == objectReplacementCharacter; }
> + static bool treatAsZeroWidthSpaceInComplexScript(UChar c) { return c < 0x20 || (c >= 0x7F && c < 0xA0) || c == softHyphen || c == zeroWidthSpace || (c >= 0x200e && c <= 0x200f) || (c >= 0x202a && c <= 0x202e) || c == zeroWidthNoBreakSpace || c == objectReplacementCharacter; }
Are there any other callers of this function?
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list