aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickimage/data/htiling.qml
blob: 60ee7b35ebeeb76c4fb2753e0812cc2865a9a95e (plain)
1
2
3
4
5
6
7
8
9
10
11
import QtQuick 2.0

Rectangle {
    width: 200; height: 480

    Image {
        objectName: "tiling"; anchors.fill: parent
        source: "green.png"; fillMode: Image.TileHorizontally
    }
}