[Webkit-unassigned] [Bug 108347] CSS3 'word-break: break-all' spoils CJK line-break restrictions

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Feb 27 01:36:36 PST 2013


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





--- Comment #15 from murakami at antenna.co.jp  2013-02-27 01:39:00 PST ---
The result (After Change, Snapshot to test word-break) still has problem:
'(a' and 'a)' must not be broken. (The result of IE9/Win is correct)

The word-break:break-all means treating non-CJK letters as like CJK letters,
so the expected patch will be:

midWordBreak = IsNonCJKLetter(c) /* I don't know correct function name 
                                    but something like this */
               && IsNonCJKLetter(previousChar)
               && ...

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