OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 <script> | 4 <script> |
5 description('Tests that unicode-range descriptor is used to selectively download
fonts that are used in document.'); | 5 description('Tests that unicode-range descriptor is used to selectively download
fonts that are used in document.'); |
6 | 6 |
7 window.jsTestIsAsync = true; | 7 window.jsTestIsAsync = true; |
8 | 8 |
9 var latin1Loaded = false; | 9 var latin1Loaded = false; |
10 var cyrillicLoaded = false; | 10 var cyrillicLoaded = false; |
11 var arabicLoaded = false; | 11 var arabicLoaded = false; |
12 | 12 |
13 function runTests() { | 13 function runTests() { |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 } | 56 } |
57 #test { | 57 #test { |
58 font-family: TestFont; | 58 font-family: TestFont; |
59 } | 59 } |
60 </style> | 60 </style> |
61 </head> | 61 </head> |
62 <body> | 62 <body> |
63 <p id="test">Проверка</p> | 63 <p id="test">Проверка</p> |
64 </body> | 64 </body> |
65 </html> | 65 </html> |
OLD | NEW |