summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlanimations/data/properties.qml
diff options
context:
space:
mode:
authorLeonardo Sobral Cunha <leo.cunha@nokia.com>2010-02-11 21:35:45 (GMT)
committerLeonardo Sobral Cunha <leo.cunha@nokia.com>2010-02-11 22:49:39 (GMT)
commitfe9e91d5b9a5504fdc00f53abd5972621e7fa7dd (patch)
tree28c25d69001ef4dd4181ddf465b373491a61932b /tests/auto/declarative/qmlanimations/data/properties.qml
parent6e0c76a209b87e306e48266962f5668237e63c62 (diff)
downloadQt-fe9e91d5b9a5504fdc00f53abd5972621e7fa7dd.zip
Qt-fe9e91d5b9a5504fdc00f53abd5972621e7fa7dd.tar.gz
Qt-fe9e91d5b9a5504fdc00f53abd5972621e7fa7dd.tar.bz2
Adds qml prefix to all declarative autotests
Diffstat (limited to 'tests/auto/declarative/qmlanimations/data/properties.qml')
-rw-r--r--tests/auto/declarative/qmlanimations/data/properties.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlanimations/data/properties.qml b/tests/auto/declarative/qmlanimations/data/properties.qml
new file mode 100644
index 0000000..7e73f57
--- /dev/null
+++ b/tests/auto/declarative/qmlanimations/data/properties.qml
@@ -0,0 +1,14 @@
+import Qt 4.6
+
+Rectangle {
+ width: 400
+ height: 400
+ Rectangle {
+ id: theRect
+ objectName: "TheRect"
+ color: "red"
+ width: 50; height: 50
+ x: 100; y: 100
+ x: NumberAnimation { to: 200 }
+ }
+}