OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 #ja { | |
4 position: absolute; | |
5 top: 100px; | |
6 left: 0px; | |
7 } | |
8 #zh { | |
9 position: absolute; | |
10 top: 200px; | |
11 left: 0px; | |
12 } | |
13 </style> | |
14 Tests if glyph caches of different languages interfere.<br> | |
15 On systems that ja and zh have different font preferences, the following two div s should be displayed in corresponding preferred fonts respectively. | |
16 <!-- The sequence of the following divs is difference between the test and the r ef. --> | |
17 <div id="zh" lang="zh">Chinese: 一丁</div> | |
18 <div id="ja" lang="ja">Japanese: 一丁</div> | |
OLD | NEW |