summaryrefslogtreecommitdiff
path: root/Tools/TestWebKitAPI/Tests/mac/attributedStringCustomFont.html
blob: 1e6b90a82f6789838301602f6e83be80486db111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
    <head>
        <style>
            @font-face {
                font-family: customFont;
                src: url(Ahem.ttf);
            }
        </style>
    </head>
    <body contenteditable style="font-family: customFont; font-size: 48px;">Lorem Ipsum
        <script>
            document.body.focus();
        </script>
    </body>
</html>