tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / font-face-in-media-rule.html
1 <html>
2 <head>
3   <style type="text/css" media="screen">
4   
5     @media screen {
6       @font-face {
7           font-family: Times;
8           src: local("Arial");
9       }
10     }
11   
12     body {
13       font-family: Times, sans-serif;
14     }
15   </style>
16 </head>
17 <body>
18   This should not crash.
19 </body>
20 </html>