tizen beta release
[profile/ivi/webkit-efl.git] / LayoutTests / platform / gtk / fonts / font-face-with-complex-text.html
1 <html>
2 <head>
3 <style>
4     @font-face {
5         font-family: webkit-ahem;
6         font-style: normal;
7         src: url(../../../resources/Ahem.ttf) format(truetype);
8     }
9     body { text-rendering: geometricPrecision; }
10 </style>
11 <script>
12 if (window.layoutTestController) {
13     layoutTestController.waitUntilDone();
14     document.onreadystatechange = function() {
15         if (document.readyState === 'complete')
16             setTimeout(function() {layoutTestController.notifyDone();}, 100);
17     };
18 }
19 </script>
20 </head>
21 <body>
22 <p>This text should be rendered with the default font:</p>
23 <p>A B C D E F G H I J K L M N O P Q R S T U V X Y Z</p>
24
25 <p>This text should appear as a series of blocks:</p>
26 <p style="font-family: webkit-ahem;">A B C D E F G H I J K L M N O P Q R S T U V X Y Z</p>
27 </body>
28 </html>