Title: [188075] branches/safari-601.1-branch/Source/WebCore
Revision
188075
Author
dburk...@apple.com
Date
2015-08-06 16:08:48 -0700 (Thu, 06 Aug 2015)

Log Message

Merge r187693. rdar://problem/22047626

Modified Paths

Diff

Modified: branches/safari-601.1-branch/Source/WebCore/ChangeLog (188074 => 188075)


--- branches/safari-601.1-branch/Source/WebCore/ChangeLog	2015-08-06 23:08:46 UTC (rev 188074)
+++ branches/safari-601.1-branch/Source/WebCore/ChangeLog	2015-08-06 23:08:48 UTC (rev 188075)
@@ -1,5 +1,24 @@
 2015-08-06  Dana Burkart  <dburk...@apple.com>
 
+        Merge r187693. rdar://problem/22047626
+
+    2015-07-31  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+            [Cocoa] Latin quotes are used with the system font on Chinese devices
+            https://bugs.webkit.org/show_bug.cgi?id=147504
+
+            Reviewed by Dean Jackson.
+
+            The system font has some fancy logic regarding character selection which requires
+            using Core Text for glyph selection.
+
+            No new tests because tests can't change the system language of the device.
+
+            * platform/graphics/mac/GlyphPageMac.cpp:
+            (WebCore::shouldUseCoreText):
+
+2015-08-06  Dana Burkart  <dburk...@apple.com>
+
         Merge r187622. rdar://problem/15779101
 
     2015-07-30  Anders Carlsson  <ander...@apple.com>

Modified: branches/safari-601.1-branch/Source/WebCore/platform/graphics/mac/GlyphPageMac.cpp (188074 => 188075)


--- branches/safari-601.1-branch/Source/WebCore/platform/graphics/mac/GlyphPageMac.cpp	2015-08-06 23:08:46 UTC (rev 188074)
+++ branches/safari-601.1-branch/Source/WebCore/platform/graphics/mac/GlyphPageMac.cpp	2015-08-06 23:08:48 UTC (rev 188075)
@@ -42,7 +42,7 @@
 
 static bool shouldUseCoreText(const UChar* buffer, unsigned bufferLength, const Font* fontData)
 {
-    if (fontData->platformData().isCompositeFontReference())
+    if (fontData->platformData().isCompositeFontReference() || fontData->isSystemFont())
         return true;
     if (fontData->platformData().widthVariant() != RegularWidth || fontData->hasVerticalGlyphs()) {
         // Ideographs don't have a vertical variant or width variants.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to