tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / font-face-implicit-local-font.html
1 <style>
2     @font-face {
3         font-family: 'courier';
4         src: local('Times');
5         unicode-range: U+003?;
6     }
7 </style>
8 <p>
9     This tests that when @font-face rules with unicode-range are specified for a
10     font that exists on the system, the system font is used for all characters
11     not explictly overridden.
12 </p>
13 <p>
14     In the next line, the digits should be in Times, but the letters should be
15     in Courier.
16 </p>
17 <span style="font-family: 'courier'; font-size: 24px;">
18     ABCDEFGHIJ 1234567890
19 </span>