| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| "http://www.w3.org/TR/html4/loose.dtd"> |
| <html> |
| <head> |
| <title>ATSUI fallback font</title> |
| </head> |
| <body> |
| <p> |
| In each of the following lines, the Hebrew |
| letters אבגד in the end should be in boldface |
| (compare with the same letters in the middle of the line). |
| </p> |
| <!-- Lucida Grande exists and includes Hebrew; no fallback necessary --> |
| <p style="font-family:'Lucida Grande';"> |
| abcd אבגד |
| <b>abcd אבגד</b> |
| </p> |
| <!-- Courier exists but doesn't include Hebrew; WebKit falls back to |
| Helvetica and Helvetica Bold for Hebrew, but then ATSUI falls back to |
| Lucida Grande (not bold) --> |
| <p style="font-family:'Courier';"> |
| abcd אבגד |
| <b>abcd אבגד</b> |
| </p> |
| <!-- noSuchFamilyForSure doesn't exist; WebKit falls back to Helvetica |
| and Helvetica Bold for both Roman and Hebrew, but then ATSUI falls back to |
| Lucida Grande (not bold) for Hebrew --> |
| <p style="font-family:'noSuchFamilyForSure';"> |
| abcd אבגד |
| <b>abcd אבגד</b> |
| </p> |
| </body> |