summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlbehaviors/data/scripttrigger.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlbehaviors/data/scripttrigger.qml')
-rw-r--r--tests/auto/declarative/qmlbehaviors/data/scripttrigger.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlbehaviors/data/scripttrigger.qml b/tests/auto/declarative/qmlbehaviors/data/scripttrigger.qml
new file mode 100644
index 0000000..4383a0b
--- /dev/null
+++ b/tests/auto/declarative/qmlbehaviors/data/scripttrigger.qml
@@ -0,0 +1,16 @@
+import Qt 4.6
+Rectangle {
+ width: 400
+ height: 400
+
+ onColorChanged: {
+ rect.x = 200
+ }
+
+ Rectangle {
+ id: rect
+ objectName: "MyRect"
+ width: 100; height: 100; color: "green"
+ x: Behavior { NumberAnimation { duration: 200; } }
+ }
+}