[Webkit-unassigned] [Bug 18039] dx causes non-BMP characters to fail to render

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Nov 18 20:27:24 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=18039





--- Comment #12 from Darin Adler <darin at apple.com>  2011-11-18 20:27:24 PST ---
(From update of attachment 115919)
View in context: https://bugs.webkit.org/attachment.cgi?id=115919&action=review

> Source/WebCore/rendering/svg/SVGTextLayoutAttributesBuilder.cpp:210
> +                if (U16_IS_SURROGATE(currentCharacter) && U16_IS_SURROGATE_LEAD(currentCharacter)) {

Should be just:

    if (U16_IS_LEAD(currentCharacter))

-- 
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