tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / font-face-used-after-retired.html
1 <style>
2     @font-face {
3         font-family: custom;
4         src: url(no-such-file.ttf);
5     }
6 </style>
7 <!-- content: counter(page) causes the style diff to be "detach" -->
8 <div style="font-family: custom; content: counter(page);">
9     <br>PASS
10 </div>
11 <script>
12     if (window.layoutTestController) {
13         layoutTestController.dumpAsText();
14         layoutTestController.waitUntilDone();
15         // Must wait for the font to fail to load.
16         setTimeout(function() { layoutTestController.notifyDone() }, 100);
17     }
18
19     document.execCommand("SelectAll");
20 </script>