Commit d7b98d0c authored by Dominik Röttsches's avatar Dominik Röttsches Committed by Commit Bot

Add a Blink font matching test for a wider set of languages

In preparation for moving Blink fallback to an API call on all Windows
versions instead of using a hard-coded list, add a test to retrieve
fallback fonts for a larger set of languages and establish a test
baseline for those.

It is important to note that the results are not only affected by
fallback but also by what we configure as default preferences fonts
for certain scripts, which needs updating too (issue 960450).

Bug: 976737
Change-Id: Ibdf990e9ea8beb6c9742774d97fff4b4981a00b8
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1705916
Commit-Queue: Koji Ishii <kojii@chromium.org>
Reviewed-by: default avatarEmil A Eklund <eae@chromium.org>
Reviewed-by: default avatarKoji Ishii <kojii@chromium.org>
Cr-Commit-Position: refs/heads/master@{#678389}
parent 6be574be
(async function(testRunner) {
var page = await testRunner.createPage();
await page.loadHTML(`
<html>
<meta charset="UTF-8">
<body>
<div class="test">
<div lang="ar" id="ar">&#x062A;&#x062D;</div>
<div lang="hy-am" id="hy-am">&#x0540;&#x0541;</div>
<div lang="bn" id="bn">&#x09B8;&#x09AE;</div>
<div lang="en-us-brai" id="en-us-brai">&#x2870;&#x2871;</div>
<div lang="bug" id="bug">&#x1A00;&#x1A01;</div>
<div lang="cans" id="cans">&#x1410;&#x1411;</div>
<div lang="xcr" id="xcr">&#x000102A0;&#x000102A1;</div>
<div lang="chr" id="chr">&#x13A1;&#x13A2;</div>
<div lang="copt" id="copt">&#x2C81;&#x2C82;</div>
<div lang="akk" id="akk">&#x00012000;&#x0001200C;</div>
<div lang="ecy" id="ecy">&#x00010800;&#x00010801;</div>
<div lang="ru" id="ru">&#x0410;&#x0411;&#x0412;</div>
<div lang="en" id="en">&#x00010400;&#x00010401;</div>
<div lang="hi" id="hi">&#x0905;&#x0906;</div>
<div lang="am" id="am">&#x1201;&#x1202;</div>
<div lang="ka" id="ka">&#x10A0;&#x10A1;</div>
<div lang="el" id="el">&#x0391;&#x0392;</div>
<div lang="pa" id="pa">&#x0A21;&#x0A22;</div>
<div lang="zh-CN" id="zh-CN">&#x6211;</div>
<div lang="zh-HK" id="zh-HK">&#x6211;</div>
<div lang="zh-Hans" id="zh-Hans">&#x6211;</div>
<div lang="zh-Hant" id="zh-Hant">&#x6211;</div>
<div lang="ja" id="ja">&#x6211;</div>
<div lang="ko" id="ko">&#x1100;&#x1101;</div>
<div lang="he" id="he">&#x05D1;&#x05D2;</div>
<div lang="km" id="km">&#x1780;&#x1781;</div>
<div lang="arc" id="arc">&#x00010841;&#x00010842;</div>
<div lang="pal" id="pal">&#x00010B61;&#x00010B62;</div>
<div lang="xpr" id="xpr">&#x00010B41;&#x00010B42;</div>
<div lang="jv" id="jv">&#xA991;&#xA992;</div>
<div lang="kn" id="kn">&#x0CA1;&#x0CA2;</div>
<div lang="sa" id="sa">&#x00010A10;&#x00010A11;</div>
<div lang="lo" id="lo">&#x0ED0;&#x0ED1;</div>
<div lang="lis" id="lis">&#xA4D0;&#xA4D1;</div>
<div lang="xlc" id="xlc">&#x00010281;&#x00010282;</div>
<div lang="xld" id="xld">&#x00010921;&#x00010922;</div>
<div lang="ml" id="ml">&#x0D21;&#x0D22;</div>
<div lang="" id="script_meroitic">&#x000109A1;&#x000109A2;</div>
<div lang="my" id="my">&#x1000;&#x1001;</div>
<div lang="" id="script_new_tai_lue">&#x1981;&#x1982;</div>
<div lang="nko" id="nko">&#x07C1;&#x07C2;</div>
<div lang="" id="script_ogham">&#x1680;&#x1681;</div>
<div lang="" id="script_ol_chiki">&#x1C51;&#x1C52;</div>
<div lang="" id="script_old_italic">&#x00010301;&#x00010302;</div>
<div lang="peo" id="peo">&#x000103A1;&#x000103A2;</div>
<div lang="" id="script_old_south_arabian">&#x00010A61;&#x00010A62;</div>
<div lang="or" id="or">&#x0B21;&#x0B22;</div>
<div lang="" id="script_phags_pa">&#xA841;&#xA842;</div>
<div lang="" id="script_runic">&#x16A0;&#x16A1;</div>
<div lang="" id="script_shavian">&#x00010451;&#x00010452;</div>
<div lang="si" id="si">&#x0D91;&#x0D92;</div>
<div lang="" id="script_sora_sompeng">&#x000110D1;&#x000110D2;</div>
<div lang="syr" id="syr">&#x0711;&#x0712;</div>
<div lang="" id="script_tai_le">&#x1951;&#x1952;</div>
<div lang="ta" id="ta">&#x0BB1;&#x0BB2;</div>
<div lang="te" id="te">&#x0C21;&#x0C22;</div>
<div lang="" id="script_thaana">&#x0781;&#x0782;</div>
<div lang="th" id="th">&#x0e01;&#x0e02;</div>
<div lang="bo" id="bo">&#x0F01;&#x0F02;</div>
<div lang="" id="script_tifinagh">&#x2D31;&#x2D32;</div>
<div lang="vai" id="vai">&#xA501;&#xA502;</div>
<div lang="yi" id="yi">&#xA000;&#xA001;</div>
</div>
</body>
</html>
`);
var session = await page.createSession();
var helper = await testRunner.loadScript('./resources/layout-font-test.js');
await helper(testRunner, session);
testRunner.completeTest();
})
تح
#ar:
"DejaVu Sans" : 2
ՀՁ
#hy-am:
"DejaVu Sans" : 2
সম
#bn:
"Mukti Narrow" : 2
⡰⡱
#en-us-brai:
"DejaVu Sans" : 2
ᨀᨁ
#bug:
"DejaVu Sans" : 2
ᐐᐑ
#cans:
"DejaVu Sans" : 2
𐊠𐊡
#xcr:
"DejaVu Sans" : 2
ᎡᎢ
#chr:
"DejaVu Sans" : 2
ⲁⲂ
#copt:
"DejaVu Sans" : 2
𒀀𒀌
#akk:
"DejaVu Sans" : 2
𐠀𐠁
#ecy:
"DejaVu Sans" : 2
АБВ
#ru:
"Tinos" : 3
𐐀𐐁
#en:
"DejaVu Sans" : 2
अआ
#hi:
"Lohit Devanagari" : 2
ሁሂ
#am:
"DejaVu Sans" : 2
ႠႡ
#ka:
"DejaVu Sans" : 2
ΑΒ
#el:
"Tinos" : 2
ਡਢ
#pa:
"Lohit Gurmukhi" : 2
#zh-CN:
"Noto Sans CJK JP Regular" : 1
#zh-HK:
"Noto Sans CJK JP Regular" : 1
#zh-Hans:
"Noto Sans CJK JP Regular" : 1
#zh-Hant:
"Noto Sans CJK JP Regular" : 1
#ja:
"Noto Sans CJK JP Regular" : 1
ᄀᄁ
#ko:
"Noto Sans CJK JP Regular" : 2
בג
#he:
"Tinos" : 2
កខ
#km:
"Noto Sans Khmer" : 2
𐡁𐡂
#arc:
"DejaVu Sans" : 2
𐭡𐭢
#pal:
"DejaVu Sans" : 2
𐭁𐭂
#xpr:
"DejaVu Sans" : 2
ꦑꦒ
#jv:
"DejaVu Sans" : 2
ಡಢ
#kn:
"DejaVu Sans" : 2
𐨐𐨑
#sa:
"DejaVu Sans" : 2
໐໑
#lo:
"DejaVu Sans" : 2
ꓐꓑ
#lis:
"DejaVu Sans" : 2
𐊁𐊂
#xlc:
"DejaVu Sans" : 2
𐤡𐤢
#xld:
"DejaVu Sans" : 2
ഡഢ
#ml:
"DejaVu Sans" : 2
𐦡𐦢
#script_meroitic:
"DejaVu Sans" : 2
ကခ
#my:
"DejaVu Sans" : 2
ᦁᦂ
#script_new_tai_lue:
"DejaVu Sans" : 2
߁߂
#nko:
"DejaVu Sans" : 2
#script_ogham:
"DejaVu Sans" : 2
᱑᱒
#script_ol_chiki:
"DejaVu Sans" : 2
𐌁𐌂
#script_old_italic:
"DejaVu Sans" : 2
𐎡𐎢
#peo:
"DejaVu Sans" : 2
𐩡𐩢
#script_old_south_arabian:
"DejaVu Sans" : 2
ଡଢ
#or:
"DejaVu Sans" : 2
ꡁꡂ
#script_phags_pa:
"DejaVu Sans" : 2
ᚠᚡ
#script_runic:
"DejaVu Sans" : 2
𐑑𐑒
#script_shavian:
"DejaVu Sans" : 2
එඒ
#si:
"DejaVu Sans" : 2
𑃑𑃒
#script_sora_sompeng:
"DejaVu Sans" : 2
ܑܒ
#syr:
"DejaVu Sans" : 2
ᥑᥒ
#script_tai_le:
"DejaVu Sans" : 2
றல
#ta:
"Lohit Tamil" : 2
డఢ
#te:
"DejaVu Sans" : 2
ށނ
#script_thaana:
"DejaVu Sans" : 2
กข
#th:
"Garuda" : 2
༁༂
#bo:
"DejaVu Sans" : 2
ⴱⴲ
#script_tifinagh:
"DejaVu Sans" : 2
ꔁꔂ
#vai:
"DejaVu Sans" : 2
ꀀꀁ
#yi:
"DejaVu Sans" : 2
تح
#ar:
"Geeza Pro" : 2
ՀՁ
#hy-am:
"Mshtakan" : 2
সম
#bn:
"Bangla MN" : 2
⡰⡱
#en-us-brai:
"Apple Braille" : 2
ᨀᨁ
#bug:
"Times" : 2
ᐐᐑ
#cans:
"Euphemia UCAS" : 2
𐊠𐊡
#xcr:
"Geneva" : 2
ᎡᎢ
#chr:
"Plantagenet Cherokee" : 2
ⲁⲂ
#copt:
"Times" : 2
𒀀𒀌
#akk:
"Times" : 2
𐠀𐠁
#ecy:
"Times" : 2
АБВ
#ru:
"Times" : 3
𐐀𐐁
#en:
"Baskerville" : 2
अआ
#hi:
"ITF Devanagari" : 2
ሁሂ
#am:
"Kefa" : 2
ႠႡ
#ka:
"Arial Unicode MS" : 2
ΑΒ
#el:
"Times" : 2
ਡਢ
#pa:
"Gurmukhi MN" : 2
#zh-CN:
"Songti SC" : 1
#zh-HK:
"Songti SC" : 1
#zh-Hans:
"Songti SC" : 1
#zh-Hant:
"Songti SC" : 1
#ja:
"Songti SC" : 1
ᄀᄁ
#ko:
"AppleMyungjo" : 2
בג
#he:
"Lucida Grande" : 2
កខ
#km:
"Khmer MN" : 2
𐡁𐡂
#arc:
"Times" : 2
𐭡𐭢
#pal:
"Times" : 2
𐭁𐭂
#xpr:
"Times" : 2
ꦑꦒ
#jv:
"Times" : 2
ಡಢ
#kn:
"Kannada MN" : 2
𐨐𐨑
#sa:
"Times" : 2
໐໑
#lo:
"Lao MN" : 2
ꓐꓑ
#lis:
"Geneva" : 2
𐊁𐊂
#xlc:
"Geneva" : 2
𐤡𐤢
#xld:
"Times" : 2
ഡഢ
#ml:
"Malayalam MN" : 2
𐦡𐦢
#script_meroitic:
"Times" : 2
ကခ
#my:
"Myanmar MN" : 2
ᦁᦂ
#script_new_tai_lue:
"Times" : 2
߁߂
#nko:
"Times" : 2
#script_ogham:
"Geneva" : 2
᱑᱒
#script_ol_chiki:
"Times" : 2
𐌁𐌂
#script_old_italic:
"Geneva" : 2
𐎡𐎢
#peo:
"Times" : 2
𐩡𐩢
#script_old_south_arabian:
"Times" : 2
ଡଢ
#or:
"Oriya MN" : 2
ꡁꡂ
#script_phags_pa:
"Times" : 2
ᚠᚡ
#script_runic:
"Geneva" : 2
𐑑𐑒
#script_shavian:
"Geneva" : 2
එඒ
#si:
"Sinhala MN" : 2
𑃑𑃒
#script_sora_sompeng:
"Times" : 2
ܑܒ
#syr:
"Times" : 2
ᥑᥒ
#script_tai_le:
"Times" : 2
றல
#ta:
"Tamil Sangam MN" : 2
డఢ
#te:
"Telugu MN" : 2
ށނ
#script_thaana:
"Times" : 2
กข
#th:
"Thonburi" : 2
༁༂
#bo:
"Kokonor" : 2
ⴱⴲ
#script_tifinagh:
"Times" : 2
ꔁꔂ
#vai:
"Times" : 2
ꀀꀁ
#yi:
"Songti SC" : 2
تح
#ar:
"Geeza Pro" : 2
ՀՁ
#hy-am:
"Mshtakan" : 2
সম
#bn:
"Kohinoor Bangla" : 2
⡰⡱
#en-us-brai:
"Apple Braille" : 2
ᨀᨁ
#bug:
"Times" : 2
ᐐᐑ
#cans:
"Euphemia UCAS" : 2
𐊠𐊡
#xcr:
"Geneva" : 2
ᎡᎢ
#chr:
"Plantagenet Cherokee" : 2
ⲁⲂ
#copt:
"Noto Sans Coptic" : 2
𒀀𒀌
#akk:
"Times" : 2
𐠀𐠁
#ecy:
"Times" : 2
АБВ
#ru:
"Times" : 3
𐐀𐐁
#en:
"Baskerville" : 2
अआ
#hi:
"ITF Devanagari" : 2
ሁሂ
#am:
"Kefa" : 2
ႠႡ
#ka:
"Arial Unicode MS" : 2
ΑΒ
#el:
"Times" : 2
ਡਢ
#pa:
"Gurmukhi MN" : 2
#zh-CN:
"Songti SC" : 1
#zh-HK:
"Songti SC" : 1
#zh-Hans:
"Songti SC" : 1
#zh-Hant:
"Songti SC" : 1
#ja:
"Songti SC" : 1
ᄀᄁ
#ko:
"AppleMyungjo" : 2
בג
#he:
"Lucida Grande" : 2
កខ
#km:
"Khmer MN" : 2
𐡁𐡂
#arc:
"Times" : 2
𐭡𐭢
#pal:
"Times" : 2
𐭁𐭂
#xpr:
"Times" : 2
ꦑꦒ
#jv:
"Times" : 2
ಡಢ
#kn:
"Kannada MN" : 2
𐨐𐨑
#sa:
"Times" : 2
໐໑
#lo:
"Lao MN" : 2
ꓐꓑ
#lis:
"Noto Sans Lisu" : 2
𐊁𐊂
#xlc:
"Geneva" : 2
𐤡𐤢
#xld:
"Times" : 2
ഡഢ
#ml:
"Malayalam MN" : 2
𐦡𐦢
#script_meroitic:
"Times" : 2
ကခ
#my:
"Myanmar MN" : 2
ᦁᦂ
#script_new_tai_lue:
"Noto Sans New Tai Lue" : 2
߁߂
#nko:
"Noto Sans NKo" : 2
#script_ogham:
"Noto Sans Ogham" : 2
᱑᱒
#script_ol_chiki:
"Noto Sans Ol Chiki" : 2
𐌁𐌂
#script_old_italic:
"Geneva" : 2
𐎡𐎢
#peo:
"Times" : 2
𐩡𐩢
#script_old_south_arabian:
"Times" : 2
ଡଢ
#or:
"Oriya MN" : 2
ꡁꡂ
#script_phags_pa:
"Noto Sans Phags Pa" : 2
ᚠᚡ
#script_runic:
"Noto Sans Runic" : 2
𐑑𐑒
#script_shavian:
"Geneva" : 2
එඒ
#si:
"Sinhala MN" : 2
𑃑𑃒
#script_sora_sompeng:
"Times" : 2
ܑܒ
#syr:
"Noto Sans Syriac Eastern" : 2
ᥑᥒ
#script_tai_le:
"Noto Sans Tai Le" : 2
றல
#ta:
"Tamil Sangam MN" : 2
డఢ
#te:
"Kohinoor Telugu" : 2
ށނ
#script_thaana:
"Times" : 2
กข
#th:
"Thonburi" : 2
༁༂
#bo:
"Kokonor" : 2
ⴱⴲ
#script_tifinagh:
"Noto Sans Tifinagh" : 2
ꔁꔂ
#vai:
"Noto Sans Vai" : 2
ꀀꀁ
#yi:
"Songti SC" : 2
تح
#ar:
"Geeza Pro" : 2
ՀՁ
#hy-am:
"Mshtakan" : 2
সম
#bn:
"Kohinoor Bangla" : 2
⡰⡱
#en-us-brai:
"Apple Braille" : 2
ᨀᨁ
#bug:
"Times" : 2
ᐐᐑ
#cans:
"Euphemia UCAS" : 2
𐊠𐊡
#xcr:
"Geneva" : 2
ᎡᎢ
#chr:
"Plantagenet Cherokee" : 2
ⲁⲂ
#copt:
"Times" : 2
𒀀𒀌
#akk:
"Times" : 2
𐠀𐠁
#ecy:
"Times" : 2
АБВ
#ru:
"Times" : 3
𐐀𐐁
#en:
"Baskerville" : 2
अआ
#hi:
"ITF Devanagari" : 2
ሁሂ
#am:
"Kefa" : 2
ႠႡ
#ka:
"Arial Unicode MS" : 2
ΑΒ
#el:
"Times" : 2
ਡਢ
#pa:
"Gurmukhi MN" : 2
#zh-CN:
"Songti SC" : 1
#zh-HK:
"Songti SC" : 1
#zh-Hans:
"Songti SC" : 1
#zh-Hant:
"Songti SC" : 1
#ja:
"Songti SC" : 1
ᄀᄁ
#ko:
"AppleMyungjo" : 2
בג
#he:
"Lucida Grande" : 2
កខ
#km:
"Khmer MN" : 2
𐡁𐡂
#arc:
"Times" : 2
𐭡𐭢
#pal:
"Times" : 2
𐭁𐭂
#xpr:
"Times" : 2
ꦑꦒ
#jv:
"Times" : 2
ಡಢ
#kn:
"Kannada MN" : 2
𐨐𐨑
#sa:
"Times" : 2
໐໑
#lo:
"Lao MN" : 2
ꓐꓑ
#lis:
"Geneva" : 2
𐊁𐊂
#xlc:
"Geneva" : 2
𐤡𐤢
#xld:
"Times" : 2
ഡഢ
#ml:
"Malayalam MN" : 2
𐦡𐦢
#script_meroitic:
"Times" : 2
ကခ
#my:
"Myanmar MN" : 2
ᦁᦂ
#script_new_tai_lue:
"Times" : 2
߁߂
#nko:
"Times" : 2
#script_ogham:
"Geneva" : 2
᱑᱒
#script_ol_chiki:
"Times" : 2
𐌁𐌂
#script_old_italic:
"Geneva" : 2
𐎡𐎢
#peo:
"Times" : 2
𐩡𐩢
#script_old_south_arabian:
"Times" : 2
ଡଢ
#or:
"Oriya MN" : 2
ꡁꡂ
#script_phags_pa:
"Times" : 2
ᚠᚡ
#script_runic:
"Geneva" : 2
𐑑𐑒
#script_shavian:
"Geneva" : 2
එඒ
#si:
"Sinhala MN" : 2
𑃑𑃒
#script_sora_sompeng:
"Times" : 2
ܑܒ
#syr:
"Times" : 2
ᥑᥒ
#script_tai_le:
"Times" : 2
றல
#ta:
"Tamil Sangam MN" : 2
డఢ
#te:
"Kohinoor Telugu" : 2
ށނ
#script_thaana:
"Times" : 2
กข
#th:
"Thonburi" : 2
༁༂
#bo:
"Kokonor" : 2
ⴱⴲ
#script_tifinagh:
"Times" : 2
ꔁꔂ
#vai:
"Times" : 2
ꀀꀁ
#yi:
"Songti SC" : 2
تح
#ar:
"Times New Roman" : 2
ՀՁ
#hy-am:
"Times New Roman" : 2
সম
#bn:
"Nirmala UI" : 2
⡰⡱
#en-us-brai:
"Segoe UI Symbol" : 2
ᨀᨁ
#bug:
"Leelawadee UI" : 2
ᐐᐑ
#cans:
"Gadugi" : 2
𐊠𐊡
#xcr:
"Segoe UI Historic" : 2
ᎡᎢ
#chr:
"Gadugi" : 2
ⲁⲂ
#copt:
"Segoe UI Symbol" : 2
𒀀𒀌
#akk:
"Segoe UI Historic" : 2
𐠀𐠁
#ecy:
"Segoe UI Historic" : 2
АБВ
#ru:
"Times New Roman" : 3
𐐀𐐁
#en:
"Segoe UI Symbol" : 2
अआ
#hi:
"Nirmala UI" : 2
ሁሂ
#am:
"Ebrima" : 2
ႠႡ
#ka:
"Sylfaen" : 2
ΑΒ
#el:
"Times New Roman" : 2
ਡਢ
#pa:
"Nirmala UI" : 2
#zh-CN:
"SimSun" : 1
#zh-HK:
"微軟正黑體" : 1
#zh-Hans:
"SimSun" : 1
#zh-Hant:
"微軟正黑體" : 1
#ja:
"Yu Gothic" : 1
ᄀᄁ
#ko:
"Malgun Gothic" : 2
בג
#he:
"Times New Roman" : 2
កខ
#km:
"Leelawadee UI" : 2
𐡁𐡂
#arc:
"Segoe UI Historic" : 2
𐭡𐭢
#pal:
"Segoe UI Historic" : 2
𐭁𐭂
#xpr:
"Segoe UI Historic" : 2
ꦑꦒ
#jv:
"Javanese Text" : 2
ಡಢ
#kn:
"Nirmala UI" : 2
𐨐𐨑
#sa:
"Segoe UI Historic" : 2
໐໑
#lo:
"Leelawadee UI" : 2
ꓐꓑ
#lis:
"Segoe UI" : 2
𐊁𐊂
#xlc:
"Segoe UI Historic" : 2
𐤡𐤢
#xld:
"Segoe UI Historic" : 2
ഡഢ
#ml:
"Nirmala UI" : 2
𐦡𐦢
#script_meroitic:
"Segoe UI Historic" : 2
ကခ
#my:
"Myanmar Text" : 2
ᦁᦂ
#script_new_tai_lue:
"Microsoft New Tai Lue" : 2
߁߂
#nko:
"Ebrima" : 2
#script_ogham:
"Segoe UI Historic" : 2
᱑᱒
#script_ol_chiki:
"Nirmala UI" : 2
𐌁𐌂
#script_old_italic:
"Segoe UI Historic" : 2
𐎡𐎢
#peo:
"Segoe UI Historic" : 2
𐩡𐩢
#script_old_south_arabian:
"Segoe UI Historic" : 2
ଡଢ
#or:
"Nirmala UI" : 2
ꡁꡂ
#script_phags_pa:
"Microsoft PhagsPa" : 2
ᚠᚡ
#script_runic:
"Segoe UI Historic" : 2
𐑑𐑒
#script_shavian:
"Segoe UI Historic" : 2
එඒ
#si:
"Nirmala UI" : 2
𑃑𑃒
#script_sora_sompeng:
"Nirmala UI" : 2
ܑܒ
#syr:
"Segoe UI Historic" : 2
ᥑᥒ
#script_tai_le:
"Microsoft Tai Le" : 2
றல
#ta:
"Nirmala UI" : 2
డఢ
#te:
"Nirmala UI" : 2
ށނ
#script_thaana:
"MV Boli" : 2
กข
#th:
"Tahoma" : 2
༁༂
#bo:
"Microsoft Himalaya" : 2
ⴱⴲ
#script_tifinagh:
"Ebrima" : 2
ꔁꔂ
#vai:
"Ebrima" : 2
ꀀꀁ
#yi:
"Microsoft Yi Baiti" : 2
تح
#ar:
"Times New Roman" : 2
ՀՁ
#hy-am:
"Tahoma" : 2
সম
#bn:
"Vrinda" : 2
⡰⡱
#en-us-brai:
"Segoe UI Symbol" : 2
ᨀᨁ
#bug:
"Arial" : 2
ᐐᐑ
#cans:
"Euphemia" : 2
𐊠𐊡
#xcr:
"Arial" : 2
ᎡᎢ
#chr:
"Arial" : 2
ⲁⲂ
#copt:
"Arial" : 2
𒀀𒀌
#akk:
"Arial" : 2
𐠀𐠁
#ecy:
"Arial" : 2
АБВ
#ru:
"Times New Roman" : 3
𐐀𐐁
#en:
"Arial" : 2
अआ
#hi:
"Mangal" : 2
ሁሂ
#am:
"Nyala" : 2
ႠႡ
#ka:
"Arial" : 2
ΑΒ
#el:
"Times New Roman" : 2
ਡਢ
#pa:
"Raavi" : 2
#zh-CN:
"SimSun" : 1
#zh-HK:
"PMingLiU" : 1
#zh-Hans:
"SimSun" : 1
#zh-Hant:
"PMingLiU" : 1
#ja:
"Meiryo" : 1
ᄀᄁ
#ko:
"Malgun Gothic" : 2
בג
#he:
"Times New Roman" : 2
កខ
#km:
"Khmer UI" : 2
𐡁𐡂
#arc:
"Arial" : 2
𐭡𐭢
#pal:
"Arial" : 2
𐭁𐭂
#xpr:
"Arial" : 2
ꦑꦒ
#jv:
"Arial" : 2
ಡಢ
#kn:
"Tunga" : 2
𐨐𐨑
#sa:
"Arial" : 2
໐໑
#lo:
"Lao UI" : 2
ꓐꓑ
#lis:
"Arial" : 2
𐊁𐊂
#xlc:
"Arial" : 2
𐤡𐤢
#xld:
"Arial" : 2
ഡഢ
#ml:
"Kartika" : 2
𐦡𐦢
#script_meroitic:
"Arial" : 2
ကခ
#my:
"Arial" : 2
ᦁᦂ
#script_new_tai_lue:
"Microsoft New Tai Lue" : 2
߁߂
#nko:
"Ebrima" : 2
#script_ogham:
"Segoe UI Symbol" : 2
᱑᱒
#script_ol_chiki:
"Arial" : 2
𐌁𐌂
#script_old_italic:
"Arial" : 2
𐎡𐎢
#peo:
"Arial" : 2
𐩡𐩢
#script_old_south_arabian:
"Arial" : 2
ଡଢ
#or:
"Kalinga" : 2
ꡁꡂ
#script_phags_pa:
"Microsoft PhagsPa" : 2
ᚠᚡ
#script_runic:
"Segoe UI Symbol" : 2
𐑑𐑒
#script_shavian:
"Arial" : 2
එඒ
#si:
"Iskoola Pota" : 2
𑃑𑃒
#script_sora_sompeng:
"Arial" : 2
ܑܒ
#syr:
"Estrangelo Edessa" : 2
ᥑᥒ
#script_tai_le:
"Microsoft Tai Le" : 2
றல
#ta:
"Latha" : 2
డఢ
#te:
"Gautami" : 2
ށނ
#script_thaana:
"MV Boli" : 2
กข
#th:
"Tahoma" : 2
༁༂
#bo:
"Microsoft Himalaya" : 2
ⴱⴲ
#script_tifinagh:
"Ebrima" : 2
ꔁꔂ
#vai:
"Ebrima" : 2
ꀀꀁ
#yi:
"Microsoft Yi Baiti" : 2
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment