summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-03-26 06:03:37 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2010-03-28 23:50:09 (GMT)
commitd81e74a5d40202ce17d31f71ae953a19ed7191dd (patch)
tree80bfb6e9d064f19e25038f6ac5990385abeecb5f /tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml
parentfbcf257f0988f1ffef442195acc9f4b4c1527870 (diff)
downloadQt-d81e74a5d40202ce17d31f71ae953a19ed7191dd.zip
Qt-d81e74a5d40202ce17d31f71ae953a19ed7191dd.tar.gz
Qt-d81e74a5d40202ce17d31f71ae953a19ed7191dd.tar.bz2
Rename visual test to qmlvisual.
Diffstat (limited to 'tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml b/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml
new file mode 100644
index 0000000..741450f
--- /dev/null
+++ b/tests/auto/declarative/qmlvisual/webview/zooming/zoomTextOnly.qml
@@ -0,0 +1,14 @@
+import Qt 4.6
+import org.webkit 1.0
+
+WebView {
+ width: 200
+ height: 250
+ url: "zoomTextOnly.html"
+ settings.zoomTextOnly: true
+ SequentialAnimation on zoomFactor {
+ loops: Animation.Infinite
+ NumberAnimation { from: 2; to: 0.25; duration: 1000 }
+ NumberAnimation { from: 0.25; to: 2; duration: 1000 }
+ }
+}