aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/reset.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/reset.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/reset.qml19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/reset.qml b/tests/auto/qtquick1/qdeclarativestates/data/reset.qml
deleted file mode 100644
index a140ffab4d..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/reset.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 640
- height: 480
- Image {
- id: image
- width: 40
- source: "image.png"
- }
-
- states: State {
- name: "state1"
- PropertyChanges {
- target: image
- width: undefined
- }
- }
-}