From b096b26c613aa283549fbdc67cbb8e47321d53bd Mon Sep 17 00:00:00 2001 From: "jungshik@google.com" Date: Wed, 8 Oct 2008 22:03:06 +0000 Subject: Change the font search order to try Lucida Sans Unicode before Arial Unicode MS because the former is available on Windows XP or later while the latter is only available with MS Office installed. This is partly to make font-dependent layout test results 'invariant' with or without Arial Unicode MS installed. Eventually, we may want to make those tests more robust against the font availability by removing some Unicode characters not commonly available. BUG=2304 TEST=pass the layout tests affected Review URL: http://codereview.chromium.org/6495 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3062 0039d316-1c4b-4281-b951-d872f2087c98 --- base/gfx/font_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/gfx') diff --git a/base/gfx/font_utils.cc b/base/gfx/font_utils.cc index d7e119a..23c7f3a 100644 --- a/base/gfx/font_utils.cc +++ b/base/gfx/font_utils.cc @@ -259,7 +259,7 @@ const wchar_t* GetFallbackFamily(const wchar_t *characters, family = L"simsun-extb"; break; default: - family = L"arial unicode ms"; + family = L"lucida sans unicode"; } } -- cgit v1.1