arial-arabic.html (652B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Bug 769475 - test for italicized Arabic script in Arial</title> 6 <style type="text/css"> 7 body { 8 font-family: arial, serif; 9 font-size: 36px; 10 line-height: 72px; 11 } 12 span { 13 font-style: italic; 14 color: white; 15 } 16 </style> 17 </head> 18 <body lang="ar"> 19 <!-- the white span should have the same width whether it's italicized or not, 20 -- as Arial does not have Arabic characters in the italic face but we should 21 -- apply synthetic italic to the regular face, NOT fall back to a different 22 -- family from prefs. 23 --> 24 <div>العربي <span>العربي</span> العربي</div> 25 </body> 26 </html>