aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickitem2/data/transformCrash.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick2/qquickitem2/data/transformCrash.qml')
-rw-r--r--tests/auto/qtquick2/qquickitem2/data/transformCrash.qml13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/auto/qtquick2/qquickitem2/data/transformCrash.qml b/tests/auto/qtquick2/qquickitem2/data/transformCrash.qml
new file mode 100644
index 0000000000..284e85f0e0
--- /dev/null
+++ b/tests/auto/qtquick2/qquickitem2/data/transformCrash.qml
@@ -0,0 +1,13 @@
+import QtQuick 2.0
+
+Item {
+ id: wrapper
+ width: 200
+ height: 200
+
+ QtObject {
+ id: object
+ }
+
+ Component.onCompleted: wrapper.transform = object
+}