I can't get Droid Sans Thai to work as a web font. The .css is downloaded, and then the .woff files (both regular and bold) are downloaded. However, Chrome fails to use the downloaded fonts. Is it my HTML/CSS or is it a problem with the font itself? (I strongly suspect the latter.)
My test HTML is:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style>
</style>
<style>
h1, p {font-family: 'Droid Sans Thai', 'Source Sans Pro', sans-serif;}
</style>
</head>
<body>
<h1>ก๊ก</h1>
<p>น. พวก, หมู่, เหล่า, โดยปรกติมักใช้เข้าคู่กันว่า เป็นก๊กเป็นพวก เป็นก๊กเป็นหมู่ เป็นก๊กเป็นเหล่า.</p>
</body>