summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-11-16 23:42:38 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-11-16 23:43:05 (GMT)
commit89464ba786864f8a905c0d9939033970ac10f978 (patch)
tree5b2914471a3301510e102ec7e44391a17eeb6d08 /tests/auto
parentb3ee5b597f93ab525320d725c74fa0b8b21f4c3e (diff)
downloadQt-89464ba786864f8a905c0d9939033970ac10f978.zip
Qt-89464ba786864f8a905c0d9939033970ac10f978.tar.gz
Qt-89464ba786864f8a905c0d9939033970ac10f978.tar.bz2
Add missing file.
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/declarative/states/data/propertyErrors.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/declarative/states/data/propertyErrors.qml b/tests/auto/declarative/states/data/propertyErrors.qml
new file mode 100644
index 0000000..270462e
--- /dev/null
+++ b/tests/auto/declarative/states/data/propertyErrors.qml
@@ -0,0 +1,10 @@
+import Qt 4.6
+Rectangle {
+ id: MyRectangle
+ width: 100; height: 100
+ color: "red"
+ states: State {
+ name: "blue"
+ PropertyChanges { target: MyRectangle; colr: "blue"; wantsFocus: true }
+ }
+}