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 <style> | 4 <style> |
5 @font-face { | 5 @font-face { |
6 font-family: 'ahem'; | 6 font-family: 'ahem'; |
7 src: url(../../resources/Ahem.ttf); | 7 src: url(../../resources/Ahem.ttf); |
8 } | 8 } |
9 </style> | 9 </style> |
10 <script> | 10 <script> |
11 description('Test that the event handlers of FontFaceSet are called in the corre
ct order.'); | 11 description('Test that the event handlers of FontFaceSet are called in the corre
ct order.'); |
12 | 12 |
13 window.jsTestIsAsync = true; | 13 window.jsTestIsAsync = true; |
(...skipping 23 matching lines...) Expand all Loading... |
37 else { | 37 else { |
38 testFailed('document.fonts does not exist'); | 38 testFailed('document.fonts does not exist'); |
39 finishJSTest(); | 39 finishJSTest(); |
40 } | 40 } |
41 </script> | 41 </script> |
42 </head> | 42 </head> |
43 <body> | 43 <body> |
44 <div style="font-family: ahem">Hello, world!</div> | 44 <div style="font-family: ahem">Hello, world!</div> |
45 </body> | 45 </body> |
46 </html> | 46 </html> |
OLD | NEW |