aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickbehaviors/data/disabledWriteWhileRunning2.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickbehaviors/data/disabledWriteWhileRunning2.qml')
-rw-r--r--tests/auto/quick/qquickbehaviors/data/disabledWriteWhileRunning2.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickbehaviors/data/disabledWriteWhileRunning2.qml b/tests/auto/quick/qquickbehaviors/data/disabledWriteWhileRunning2.qml
new file mode 100644
index 0000000000..fcd9c06de9
--- /dev/null
+++ b/tests/auto/quick/qquickbehaviors/data/disabledWriteWhileRunning2.qml
@@ -0,0 +1,14 @@
+import QtQuick 2.0
+Rectangle {
+ width: 400
+ height: 400
+ Rectangle {
+ id: rect
+ objectName: "MyRect"
+ width: 100; height: 100; color: "green"
+ Behavior on x {
+ objectName: "MyBehavior"
+ SmoothedAnimation { id: myAnimation; objectName: "MyAnimation"; duration: 1000; velocity: -1 }
+ }
+ }
+}