aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanimations/data/dotproperty.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanimations/data/dotproperty.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanimations/data/dotproperty.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanimations/data/dotproperty.qml b/tests/auto/qtquick1/qdeclarativeanimations/data/dotproperty.qml
deleted file mode 100644
index aff69e5c12..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanimations/data/dotproperty.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: wrapper
- width: 240
- height: 320
- Rectangle {
- id: myRect
- color: "red"
- width: 50; height: 50
- x: 100; y: 100
- MouseArea {
- anchors.fill: parent
- onClicked: if (wrapper.state == "state1") wrapper.state = ""; else wrapper.state = "state1";
- }
- }
- states: State {
- name: "state1"
- PropertyChanges { target: myRect; border.color: "blue" }
- }
- transitions: Transition {
- ColorAnimation { properties: "border.color"; duration: 1000 }
- }
-}