blob: 13c2b8ebe0d6f6f7c6afb6abb469a489bb807a9d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.internals) {
internals.settings.setStandardFontFamily("Ahem", "Hans");
internals.settings.setFantasyFontFamily("Ahem", "Hans");
}
</script>
</head>
<body>
<!-- This tests locale-sensitive font selection. Using overridePreference, the
fonts for Simplified Han are to Ahem font. So all divs should match. -->
<div style="font-size: 20px">
<div style="font-family: 'Ahem'">this is ahem font</div>
<div style="-webkit-locale: 'zh_CN'">this is ahem font</div>
<div style="-webkit-locale: 'zh_CN'; font-family: fantasy">this is ahem font</div>
</div>
</body>
</html>