aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml
deleted file mode 100644
index e2abb99f2a..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import QtQuick 1.1
-
-Rectangle {
- function resizeContent() {
- flick.resizeContent(600, 600, Qt.point(100, 100))
- }
- function returnToBounds() {
- flick.returnToBounds()
- }
- width: 400
- height: 360
- color: "gray"
-
- Flickable {
- id: flick
- objectName: "flick"
- anchors.fill: parent
- contentWidth: 300
- contentHeight: 300
-
- Rectangle {
- width: flick.contentWidth
- height: flick.contentHeight
- color: "red"
- }
- }
-}