Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / font-face-default-font.html
blobae001762efef6b5520af92ac44e27701edb38bd0
1 <html>
2 <head>
3 <style>
4 /* We list a couple different font families for commonly configured
5 default fonts. */
6 @font-face {
7 font-family: Times;
8 src: local("Arial");
10 @font-face {
11 font-family: "Times New Roman";
12 src: local("Arial");
14 @font-face {
15 font-family: Times;
16 font-style: italic;
17 src: local("Arial");
19 @font-face {
20 font-family: "Times New Roman";
21 font-style: italic;
22 src: local("Arial");
24 </style>
25 </head>
26 <body>
27 <p>
28 Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=16348">http://bugs.webkit.org/show_bug.cgi?id=16348</a>
29 @font-face does not affect the default style</i>.
30 </p>
31 This text should be in Arial.
32 </body>
33 </html>