Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / webview / settings / fontFamily.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     id: web
7     width: 200
8     height: 200
9     Column {
10         anchors.fill: parent
11         Text { text: "standard: " + web.settings.standardFontFamily }
12         Text { text: "fixed: " + web.settings.fixedFontFamily }
13         Text { text: "serif: " + web.settings.serifFontFamily }
14         Text { text: "sansserif: " + web.settings.sansSerifFontFamily }
15         Text { text: "cursive: " + web.settings.cursiveFontFamily }
16         Text { text: "fantasy: " + web.settings.fantasyFontFamily }
17     }
18 }