1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/text-transform/greek-uppercase-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<head> 1.7 +<title>Test for uppercasing of Greek (NFC)</title> 1.8 +<meta http-equiv="content-type" content="text/html; charset=utf-8"> 1.9 +<style type="text/css"> 1.10 +/* Note that this test depends on finding the same "serif" font for the 1.11 + English- and Greek-tagged elements; on most platforms, our default prefs 1.12 + provide that, but on Android they currently differ, hence the explicit 1.13 + Droid Serif setting below. */ 1.14 +div { 1.15 + font: 150% "Droid Serif", serif; /* explicitly prefer Droid over Charis on Android */ 1.16 + text-transform: uppercase; 1.17 + margin: 1em; 1.18 +} 1.19 +</style> 1.20 +</head> 1.21 +<body lang="en"> 1.22 +<div>Πατάτα, Αέρας, Μάιος, άυλος, αϋπνία, Μαΐου, χούι</div> 1.23 +<div lang="el">Πατάτα, Αέρας, Μάιος, άυλος, αϋπνία, Μαΐου, χούι</div> 1.24 +</body> 1.25 +</html>