aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qsgloader/data/QTBUG_17114.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qsgloader/data/QTBUG_17114.qml')
-rw-r--r--tests/auto/declarative/qsgloader/data/QTBUG_17114.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/declarative/qsgloader/data/QTBUG_17114.qml b/tests/auto/declarative/qsgloader/data/QTBUG_17114.qml
new file mode 100644
index 0000000000..7402037553
--- /dev/null
+++ b/tests/auto/declarative/qsgloader/data/QTBUG_17114.qml
@@ -0,0 +1,18 @@
+import QtQuick 2.0
+
+Rectangle {
+ property real loaderWidth: loader.width
+ property real loaderHeight: loader.height
+ width: 200
+ height: 200
+
+ Loader {
+ id: loader
+ sourceComponent: Item {
+ property real iwidth: 32
+ property real iheight: 32
+ width: iwidth
+ height: iheight
+ }
+ }
+}