aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeimage/data/qtbug_16389.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeimage/data/qtbug_16389.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeimage/data/qtbug_16389.qml30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeimage/data/qtbug_16389.qml b/tests/auto/qtquick1/qdeclarativeimage/data/qtbug_16389.qml
deleted file mode 100644
index 29fba400ef..0000000000
--- a/tests/auto/qtquick1/qdeclarativeimage/data/qtbug_16389.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 1.0
-Rectangle {
- width: 400
- height: 400
-
- Item {
- anchors.top: parent.top
- anchors.left: parent.left
- anchors.bottom: blueHandle.top
- anchors.right: blueHandle.left
-
- Image {
- id: iconImage
- objectName: "iconImage"
- anchors.top: parent.top
- anchors.bottom: parent.bottom
- source: "heart200.png"
- fillMode: Image.PreserveAspectFit
- smooth: true
- }
- }
-
- Rectangle {
- id: blueHandle
- objectName: "blueHandle"
- color: "blue"
- width: 25
- height: 25
- }
-}