<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style id="s">
p { margin: 0 }
@font-face {
  font-family: test1;
  /* with the old font, the language-specific forms appear correctly */
  src: url(ScheherazadeRegOT.ttf);
}
@font-face {
  font-family: test2;
  /* but with the new version, they don't work */
  src: url(Scheherazade-R.ttf);
}
</style>
</head>
<body>
<div style="font: 36px test1">
<p>Old font:
<p lang="ar"> &#x6f0;&#x6f1;&#x6f2;&#x6f3;&#x6f4;&#x6f5;&#x6f6;&#x6f7;&#x6f8;&#x6f9;
<p lang="urd"> &#x6f0;&#x6f1;&#x6f2;&#x6f3;&#x6f4;&#x6f5;&#x6f6;&#x6f7;&#x6f8;&#x6f9;
<p lang="snd"> &#x6f0;&#x6f1;&#x6f2;&#x6f3;&#x6f4;&#x6f5;&#x6f6;&#x6f7;&#x6f8;&#x6f9;
</div>
<hr>
<div style="font: 36px test2">
<p>New font:
<p lang="ar"> &#x6f0;&#x6f1;&#x6f2;&#x6f3;&#x6f4;&#x6f5;&#x6f6;&#x6f7;&#x6f8;&#x6f9;
<p lang="urd"> &#x6f0;&#x6f1;&#x6f2;&#x6f3;&#x6f4;&#x6f5;&#x6f6;&#x6f7;&#x6f8;&#x6f9;
<p lang="snd"> &#x6f0;&#x6f1;&#x6f2;&#x6f3;&#x6f4;&#x6f5;&#x6f6;&#x6f7;&#x6f8;&#x6f9;
</div>
</body>
</html>