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