summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/states/data/nonExistantProp.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/states/data/nonExistantProp.qml')
-rw-r--r--tests/auto/declarative/states/data/nonExistantProp.qml11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/auto/declarative/states/data/nonExistantProp.qml b/tests/auto/declarative/states/data/nonExistantProp.qml
new file mode 100644
index 0000000..582029d
--- /dev/null
+++ b/tests/auto/declarative/states/data/nonExistantProp.qml
@@ -0,0 +1,11 @@
+import Qt 4.6
+Rectangle {
+ id: MyRectangle
+
+ width: 100; height: 100
+ color: "red"
+ states: State {
+ name: "blue"
+ PropertyChanges { target: MyRectangle; colr: "blue" }
+ }
+}