Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5 <style type="text/css">
6 @font-face {
7 font-family: latin;
8 src: url("../fonts/sil/GenR102.ttf");
9 }
10 @font-face {
11 font-family: arabic;
12 src: url("../fonts/sil/Scheherazade-R 2012-07-03c.ttf");
13 }
14 body {
15 font-family: latin, arabic, sans-serif;
16 font-size: 24px;
17 line-height: 2em;
18 }
19 </style>
20 <title>Test - word-break:break-all across font fallback</title>
21 </head>
22 <body>
23 <!-- the arabic diacritics here will fall back to font 'arabic', which
24 is a graphite-enabled arabic font, and be shaped separately;
25 nevertheless, they must remain clustered with the preceding letters,
26 no additional line-breaks are allowed before them (bug 833297) -->
27 <div>f<br>oٌ<br>oِ<br>b<br>aٔ<br>r</div>
28 </body>
29 </html>