diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-03-26 05:57:19 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-03-28 23:50:08 (GMT) |
commit | fbcf257f0988f1ffef442195acc9f4b4c1527870 (patch) | |
tree | 089261bfcca4caf355276c6caf4ebf27f04f1047 /tests/auto/declarative/visual/webview/zooming/zoomTextOnly.qml | |
parent | 078ff776e37aebe5b7e88e4b4f21da1158fac3c7 (diff) | |
download | Qt-fbcf257f0988f1ffef442195acc9f4b4c1527870.zip Qt-fbcf257f0988f1ffef442195acc9f4b4c1527870.tar.gz Qt-fbcf257f0988f1ffef442195acc9f4b4c1527870.tar.bz2 |
Syntax and other small fixes for the visual tests.
Diffstat (limited to 'tests/auto/declarative/visual/webview/zooming/zoomTextOnly.qml')
-rw-r--r-- | tests/auto/declarative/visual/webview/zooming/zoomTextOnly.qml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/auto/declarative/visual/webview/zooming/zoomTextOnly.qml b/tests/auto/declarative/visual/webview/zooming/zoomTextOnly.qml index 6d51c8a..741450f 100644 --- a/tests/auto/declarative/visual/webview/zooming/zoomTextOnly.qml +++ b/tests/auto/declarative/visual/webview/zooming/zoomTextOnly.qml @@ -6,10 +6,9 @@ WebView { height: 250 url: "zoomTextOnly.html" settings.zoomTextOnly: true - zoomFactor: - SequentialAnimation { - loops: Animation.Infinite - NumberAnimation { from: 2; to: 0.25; duration: 1000 } - NumberAnimation { from: 0.25; to: 2; duration: 1000 } - } + SequentialAnimation on zoomFactor { + loops: Animation.Infinite + NumberAnimation { from: 2; to: 0.25; duration: 1000 } + NumberAnimation { from: 0.25; to: 2; duration: 1000 } + } } |