Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / webview / settings / setFontFamily.qml
1 import QtQuick 1.0
2 import QtWebKit 1.0
3
4 WebView {
5     property string skip: "WebView tests not counting until resources allocated to WebView maintenance"
6     url: "test.html"
7     width: 300
8     height: 300
9     settings.standardFontFamily: font.name
10     // WebKit doesn't seem to honour any other FontFamily settings
11     FontLoader { id: font; source: "tarzeau_ocr_a.ttf" }
12 }