aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/extendsBug.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativestates/data/extendsBug.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativestates/data/extendsBug.qml26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/auto/qtquick1/qdeclarativestates/data/extendsBug.qml b/tests/auto/qtquick1/qdeclarativestates/data/extendsBug.qml
deleted file mode 100644
index a4b77b122e..0000000000
--- a/tests/auto/qtquick1/qdeclarativestates/data/extendsBug.qml
+++ /dev/null
@@ -1,26 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 200
- height: 200
-
- Rectangle {
- id: rect
- objectName: "greenRect"
- width: 100
- height: 100
- color: "green"
- }
-
- states:[
- State {
- name: "a"
- PropertyChanges { target: rect; x: 100 }
- },
- State {
- name: "b"
- extend:"a"
- PropertyChanges { target: rect; y: 100 }
- }
- ]
-}