[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:09:40 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit c101f36219a81fa822f57c735acda8c6a9bb4419
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Nov 6 02:14:27 2003 +0000

    	Fixed 3413067, 3405797, 3456877
    	Use ATSUI to render Arabic and Hebrew.
    
            Reviewed by John.
    
            * WebCoreSupport.subproj/WebTextRenderer.m:
            (shouldUseATSU):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5400 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 3f2741d..082a43f 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2003-11-05  Richard Williamson   <rjw at apple.com>
+
+	Fixed 3413067, 3405797, 3456877
+	Use ATSUI to render Arabic and Hebrew.
+
+        Reviewed by John.
+
+        * WebCoreSupport.subproj/WebTextRenderer.m:
+        (shouldUseATSU):
+
 2003-11-05  John Sullivan  <sullivan at apple.com>
 
 	- fixed <rdar://problem/3469791>: Bigger/Smaller commands are 
diff --git a/WebKit/WebCoreSupport.subproj/WebTextRenderer.m b/WebKit/WebCoreSupport.subproj/WebTextRenderer.m
index f7c6b0e..587a73f 100644
--- a/WebKit/WebCoreSupport.subproj/WebTextRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebTextRenderer.m
@@ -2070,7 +2070,7 @@ static inline BOOL shouldUseATSU(const WebCoreTextRun *run)
             return YES;
         if (c >= 0xFE20 && c <= 0xFE2f)     // U+FE20 through U+FE2F Combining half marks
             return YES;
-        if (c >= 0x700 && c <= 0x1059)      // U+0700 through U+1059 Syriac, Thaana, Devanagari, Bengali, Gurmukhi, Gujarati, Oriya, Tamil, Telugu, Kannada, Malayalam, Sinhala, Thai, Lao, Tibetan, Myanmar
+        if (c >= 0x591 && c <= 0x1059)      // U+0591 through U+1059 Arabic, Hebrew, Syriac, Thaana, Devanagari, Bengali, Gurmukhi, Gujarati, Oriya, Tamil, Telugu, Kannada, Malayalam, Sinhala, Thai, Lao, Tibetan, Myanmar
             return YES;
         if (c >= 0x1100 && c <= 0x11FF)     // U+1100 through U+11FF Hangul Jamo (only Ancient Korean should be left here if you precompose; Modern Korean will be precomposed as a result of step A)
             return YES;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list