summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/animations/data/number.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/animations/data/number.qml')
-rw-r--r--tests/auto/declarative/animations/data/number.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/declarative/animations/data/number.qml b/tests/auto/declarative/animations/data/number.qml
new file mode 100644
index 0000000..feb551b
--- /dev/null
+++ b/tests/auto/declarative/animations/data/number.qml
@@ -0,0 +1,10 @@
+Rect {
+ width: 240
+ height: 320
+ Rect {
+ color: "red"
+ width: 50; height: 50
+ x: 100; y: 100
+ x: PropertyAnimation { from: 0; to: 200; duration: 1000; running: true }
+ }
+}