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

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

Issue 1754143002: Modernize Chinese system font fallback list for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TestExpectations Created 4 years, 9 months 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/TestExpectations ('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 c2a17f5d38224c6bbca1660a44dfc67c81ed28d7..8208a338fbe3fe7ed6b59f1b1f375cca27b22df3 100644
--- a/third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp
+++ b/third_party/WebKit/Source/platform/fonts/win/FontFallbackWin.cpp
@@ -194,7 +194,7 @@ void initializeScriptFontMap(ScriptToFontMap& scriptFontMap, SkFontMgr* fontMana
static const UChar* runicFonts[] = { L"Segoe UI Historic",
L"Segoe UI Symbol", 0 };
static const UChar* shavianFonts[] = { L"Segoe UI Historic", 0 };
- static const UChar* simplifiedHanFonts[] = { L"simsun", L"Microsoft YaHei",
+ static const UChar* simplifiedHanFonts[] = { L"Microsoft YaHei", L"simsun",
0 };
static const UChar* sinhalaFonts[] = { L"Iskoola Pota", L"AksharUnicode",
L"Nirmala UI", 0 };
@@ -211,8 +211,8 @@ void initializeScriptFontMap(ScriptToFontMap& scriptFontMap, SkFontMgr* fontMana
static const UChar* tibetanFonts[] = { L"Microsoft Himalaya", L"Jomolhari",
L"Tibetan Machine Uni", 0 };
static const UChar* tifinaghFonts[] = { L"Ebrima", 0 };
- static const UChar* traditionalHanFonts[] = { L"pmingliu",
- L"Microsoft JhengHei", 0 };
+ static const UChar* traditionalHanFonts[] = { L"Microsoft JhengHei",
+ L"pmingliu", 0 };
static const UChar* vaiFonts[] = { L"Ebrima", 0 };
static const UChar* yiFonts[] = { L"Microsoft Yi Baiti", L"Nuosu SIL",
L"Code2000", 0 };
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698