summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/font-face-multiple-remote-sources.html
blob: c678f5567eb8cabb98ff7a704dce444398f4f59b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<head>
    <style>
        @font-face { 
            font-family: 'custom';
            src: url(firstInvalidURL), url(secondInvalidURL), local('Ahem'); 
        }
    </style>
</head>
<body>
    <div style="font-family: 'custom'; font-size: 20px; color: green; background-color: red; width: 5em;">
        _fail
        fail_
        _fail
        fail_
        _fail
    </div>
    <script>
        document.body.offsetTop;
    </script>
</body>