Changeset 41607 in webkit for trunk/JavaScriptCore
- Timestamp:
- Mar 11, 2009, 8:39:14 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r41605 r41607 1 2009-03-11 Dan Bernstein <[email protected]> 2 3 Reviewed by Darin Adler. 4 5 - WTF support for fixing <rdar://problem/3919124> Thai text selection 6 in Safari is incorrect 7 8 * wtf/unicode/icu/UnicodeIcu.h: 9 (WTF::Unicode::hasLineBreakingPropertyComplexContext): Added. Returns 10 whether the character has Unicode line breaking property value SA 11 ("Complex Context"). 12 * wtf/unicode/qt4/UnicodeQt4.h: 13 (WTF::Unicode::hasLineBreakingPropertyComplexContext): Added an 14 implementation that always returns false. 15 1 16 2009-03-11 Darin Adler <[email protected]> 2 17 -
trunk/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h
r39554 r41607 180 180 } 181 181 182 inline bool hasLineBreakingPropertyComplexContext(UChar32 c) 183 { 184 return u_getIntPropertyValue(c, UCHAR_LINE_BREAK) == U_LB_COMPLEX_CONTEXT; 185 } 186 182 187 inline UChar32 mirroredChar(UChar32 c) 183 188 { -
trunk/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h
r39554 r41607 353 353 } 354 354 355 inline bool hasLineBreakingPropertyComplexContext(UChar32) 356 { 357 // FIXME: Implement this to return whether the character has line breaking property SA (Complex Context). 358 return false; 359 } 360 355 361 inline UChar32 mirroredChar(UChar32 c) 356 362 {
Note:
See TracChangeset
for help on using the changeset viewer.