bug 689736 - enable harfbuzz on android for hebrew (to fix glyph mirroring) and thai scripts. r=smontagu

This commit is contained in:
Jonathan Kew 2011-10-06 10:37:15 +01:00
parent e66cbf49ce
commit 30a8dba085

View File

@ -205,9 +205,13 @@ pref("gfx.downloadable_fonts.sanitize", true);
// use harfbuzz for default (0x01) + arabic (0x02) + hebrew (0x04) + thai (0x40)
pref("gfx.font_rendering.harfbuzz.scripts", 71);
#else
#ifdef ANDROID
pref("gfx.font_rendering.harfbuzz.scripts", 71);
#else
// use harfbuzz for default (0x01) + arabic (0x02)
pref("gfx.font_rendering.harfbuzz.scripts", 3);
#endif
#endif
#ifdef XP_WIN
pref("gfx.font_rendering.directwrite.enabled", false);