blob: 93e0937af6f8c5608dbe696a5254d6d34077d6ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<html>
<head>
<style type="text/css">
@font-face {
font-family: schz;
src: url(../fonts/sil/ScheherazadeRegOT.ttf);
}
div {
font-family: schz;
font-size: 32px;
margin: 32px;
}
</style>
</head>
<body>
<!-- test for bug 615121: flipped sign for diacritic y-offset
will make it project above the em-height box -->
<div>
<p>The letter and diacritic should be hidden by the black box:<br>
<span style="background:black;padding:0 .5em;margin-right:-1em;">
</span> بٌّ
</div>
</body>
</html>
|