Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(666)

Unified Diff: third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp

Issue 1521993008: Teach Chromium on Windows where to find Ogham glyphs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adapted tests after Tifinagh feedback Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/platform/win/inspector-protocol/layout-fonts/ogham-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp
diff --git a/third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp b/third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp
index 0af93924050089a5fdf3a78522e7d2df86d06b33..e1eabfeb92266fc2c41dd4edfdc18a2d294c98d7 100644
--- a/third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp
+++ b/third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp
@@ -161,6 +161,7 @@ void initializeScriptFontMap(ScriptToFontMap& scriptFontMap, SkFontMgr* fontMana
static const UChar* syriacFonts[] = {L"Estrangelo Edessa", L"Estrangelo Nisibin", L"Code2000", 0};
static const UChar* myanmarFonts[] = {L"Myanmar Text", L"Padauk", L"Parabaik", L"Myanmar3", L"Code2000", 0};
static const UChar* gothicFonts[] = {L"Segoe UI Symbol", 0};
+ static const UChar* oghamFonts[] = {L"Segoe UI Symbol", 0};
static const UChar* hangulFonts[] = {L"gulim", L"Malgun Gothic", 0};
static const UChar* devanagariFonts[] = {L"mangal", L"Nirmala UI", 0};
static const UChar* gujaratiFonts[] = {L"shruti", L"Nirmala UI", 0};
@@ -195,6 +196,7 @@ void initializeScriptFontMap(ScriptToFontMap& scriptFontMap, SkFontMgr* fontMana
{USCRIPT_SYRIAC, syriacFonts},
{USCRIPT_MYANMAR, myanmarFonts},
{USCRIPT_GOTHIC, gothicFonts},
+ {USCRIPT_OGHAM, oghamFonts},
{USCRIPT_HANGUL, hangulFonts},
{USCRIPT_DEVANAGARI, devanagariFonts},
{USCRIPT_GUJARATI, gujaratiFonts},
« no previous file with comments | « third_party/WebKit/LayoutTests/platform/win/inspector-protocol/layout-fonts/ogham-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698