summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/webview/settings/setFontFamily.qml
blob: 11de161f556ed1b87a44c2226f0cd0edf68bb716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 1.0
import QtWebKit 1.0

WebView {
    property string skip: "WebView tests not counting until resources allocated to WebView maintenance"
    url: "test.html"
    width: 300
    height: 300
    settings.standardFontFamily: font.name
    // WebKit doesn't seem to honour any other FontFamily settings
    FontLoader { id: font; source: "tarzeau_ocr_a.ttf" }
}