aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/nonExistantProp.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/nonExistantProp.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/nonExistantProp.qml11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/nonExistantProp.qml b/tests/auto/qtquick1/qdeclarativestates/data/nonExistantProp.qml
deleted file mode 100644
index 4973b82c3f..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/nonExistantProp.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import QtQuick 1.0
-Rectangle {
- id: myRectangle
-
- width: 100; height: 100
- color: "red"
- states: State {
- name: "blue"
- PropertyChanges { target: myRectangle; colr: "blue" }
- }
-}