bug 831354 - test fix 7 - explicitly use Droid Serif for the greek-uppercase-1 test on Android, as default fonts may not be suitable. r=dbaron

This commit is contained in:
Jonathan Kew 2013-01-18 23:03:12 +00:00
parent 451134b974
commit 845dac9a29
2 changed files with 6 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<style type="text/css">
div {
font: 150% serif;
font: 150% "Droid Serif", serif; /* explicitly prefer Droid over Charis on Android */
margin: 1em;
}
</style>

View File

@ -4,8 +4,12 @@
<title>Test for uppercasing of Greek (NFC)</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<style type="text/css">
/* Note that this test depends on finding the same "serif" font for the
English- and Greek-tagged elements; on most platforms, our default prefs
provide that, but on Android they currently differ, hence the explicit
Droid Serif setting below. */
div {
font: 150% serif;
font: 150% "Droid Serif", serif; /* explicitly prefer Droid over Charis on Android */
text-transform: uppercase;
margin: 1em;
}