tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / font-face-remote.html
1 <head>
2     <style>
3         @font-face {
4             font-family: 'remote';
5             src: url(../../resources/Ahem.ttf);
6         }
7     
8         div { width: 100px; height: 100px; background-color: red; font-family: 'remote'; font-size: 20px; color: green; }
9     </style>
10 </head>
11 <body>
12     <div>
13         FAIL_<br>
14         XXXXX<br>
15         XXXXX<br>
16         XXXXX<br>
17         _FAIL<br>
18     </div>
19     <script>
20         if (window.layoutTestController) {
21             layoutTestController.waitUntilDone();
22             document.body.offsetTop;
23             setTimeout(function() { layoutTestController.notifyDone(); }, 100);
24         }
25     </script>
26 </body>