Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qmlvisual / webview / zooming / zoomTextOnly.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     width: 200
7     height: 250
8     url: "zoomTextOnly.html"
9     settings.zoomTextOnly: true
10     /*
11     SequentialAnimation on zoomFactor {
12         loops: Animation.Infinite
13         NumberAnimation { from: 2; to: 0.25; duration: 1000 }
14         NumberAnimation { from: 0.25; to: 2; duration: 1000 }
15     }
16     */
17 }