aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickitem/data/objectChildTransform.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickitem/data/objectChildTransform.qml')
-rw-r--r--tests/auto/quick/qquickitem/data/objectChildTransform.qml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickitem/data/objectChildTransform.qml b/tests/auto/quick/qquickitem/data/objectChildTransform.qml
new file mode 100644
index 0000000000..fecb9ac921
--- /dev/null
+++ b/tests/auto/quick/qquickitem/data/objectChildTransform.qml
@@ -0,0 +1,31 @@
+import QtQuick 2.3
+
+Rectangle {
+ width: 360
+ height: 360
+
+ property alias loaderSource: loader.source
+
+ Component {
+ id: crashComponent
+
+ Item {
+ Image {
+ transform: scale
+ }
+
+ Scale {
+ id: scale
+ xScale: 1
+ yScale: 1
+ }
+ }
+ }
+
+ Loader {
+ id: loader
+ anchors.fill: parent
+ sourceComponent: crashComponent
+ }
+}
+