aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeloader/data/QTBUG_17114.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeloader/data/QTBUG_17114.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeloader/data/QTBUG_17114.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeloader/data/QTBUG_17114.qml b/tests/auto/qtquick1/qdeclarativeloader/data/QTBUG_17114.qml
deleted file mode 100644
index 8a49733a8c..0000000000
--- a/tests/auto/qtquick1/qdeclarativeloader/data/QTBUG_17114.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 1.1
-
-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
- }
- }
-}